STATIC_PAGE_SHIFT for cross-compiling jemalloc
Sets `STATIC_PAGE_SHIFT` for cross-compiling jemalloc to 12. A shift of 12 represents a page size of 4k for practically all platforms.
This commit is contained in:
parent
b54aef1d8c
commit
ccf046659a
@ -968,7 +968,8 @@ AC_CACHE_CHECK([STATIC_PAGE_SHIFT],
|
|||||||
return 0;
|
return 0;
|
||||||
]])],
|
]])],
|
||||||
[je_cv_static_page_shift=`cat conftest.out`],
|
[je_cv_static_page_shift=`cat conftest.out`],
|
||||||
[je_cv_static_page_shift=undefined]))
|
[je_cv_static_page_shift=undefined],
|
||||||
|
[je_cv_static_page_shift=12]))
|
||||||
|
|
||||||
if test "x$je_cv_static_page_shift" != "xundefined"; then
|
if test "x$je_cv_static_page_shift" != "xundefined"; then
|
||||||
AC_DEFINE_UNQUOTED([STATIC_PAGE_SHIFT], [$je_cv_static_page_shift])
|
AC_DEFINE_UNQUOTED([STATIC_PAGE_SHIFT], [$je_cv_static_page_shift])
|
||||||
|
Loading…
Reference in New Issue
Block a user