Merge commit '8ae1d87a2440cea0564efe2a6c9c223478a05f44'
* commit '8ae1d87a2440cea0564efe2a6c9c223478a05f44': build: Add support for known custom allocators Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
This commit is contained in:
commit
98ca981a23
13
configure
vendored
13
configure
vendored
@ -338,6 +338,7 @@ Toolchain options:
|
|||||||
|
|
||||||
Advanced options (experts only):
|
Advanced options (experts only):
|
||||||
--malloc-prefix=PREFIX prefix malloc and related names with PREFIX
|
--malloc-prefix=PREFIX prefix malloc and related names with PREFIX
|
||||||
|
--custom-allocator=NAME use a supported custom allocator
|
||||||
--disable-symver disable symbol versioning
|
--disable-symver disable symbol versioning
|
||||||
--enable-hardcoded-tables use hardcoded tables instead of runtime generation
|
--enable-hardcoded-tables use hardcoded tables instead of runtime generation
|
||||||
--disable-safe-bitstream-reader
|
--disable-safe-bitstream-reader
|
||||||
@ -2011,6 +2012,7 @@ CMDLINE_SET="
|
|||||||
cc
|
cc
|
||||||
cpu
|
cpu
|
||||||
cross_prefix
|
cross_prefix
|
||||||
|
custom_allocator
|
||||||
cxx
|
cxx
|
||||||
dep_cc
|
dep_cc
|
||||||
doxygen
|
doxygen
|
||||||
@ -5094,6 +5096,17 @@ check_builtin sync_val_compare_and_swap "" "int *ptr; int oldval, newval; __sync
|
|||||||
check_builtin gmtime_r time.h "time_t *time; struct tm *tm; gmtime_r(time, tm)"
|
check_builtin gmtime_r time.h "time_t *time; struct tm *tm; gmtime_r(time, tm)"
|
||||||
check_builtin localtime_r time.h "time_t *time; struct tm *tm; localtime_r(time, tm)"
|
check_builtin localtime_r time.h "time_t *time; struct tm *tm; localtime_r(time, tm)"
|
||||||
|
|
||||||
|
case "$custom_allocator" in
|
||||||
|
jemalloc)
|
||||||
|
# jemalloc by default does not use a prefix
|
||||||
|
require libjemalloc jemalloc/jemalloc.h malloc -ljemalloc
|
||||||
|
;;
|
||||||
|
tcmalloc)
|
||||||
|
require_pkg_config libtcmalloc gperftools/tcmalloc.h tc_malloc
|
||||||
|
malloc_prefix=tc_
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
|
check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
|
||||||
check_func ${malloc_prefix}memalign && enable memalign
|
check_func ${malloc_prefix}memalign && enable memalign
|
||||||
check_func ${malloc_prefix}posix_memalign && enable posix_memalign
|
check_func ${malloc_prefix}posix_memalign && enable posix_memalign
|
||||||
|
Loading…
x
Reference in New Issue
Block a user