version.c: show malloc_conf
* configure.in (jemalloc): check for the header regardless drop-in libjemalloc is found, for `malloc_conf` declaration. * version.c (ruby_show_version): show `malloc_conf` if set. [Feature #9113] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46355 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6ab08d2e8d
commit
a4d7e42888
@ -1,4 +1,10 @@
|
|||||||
Thu Jun 5 14:16:41 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Thu Jun 5 14:36:24 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* configure.in (jemalloc): check for the header regardless drop-in
|
||||||
|
libjemalloc is found, for `malloc_conf` declaration.
|
||||||
|
|
||||||
|
* version.c (ruby_show_version): show `malloc_conf` if set.
|
||||||
|
[Feature #9113]
|
||||||
|
|
||||||
* configure.in (with-jemalloc): also check for header, for ABIs
|
* configure.in (with-jemalloc): also check for header, for ABIs
|
||||||
which JEMALLOC_MANGLE is needed, i.e., Mach-O and PE-COFF
|
which JEMALLOC_MANGLE is needed, i.e., Mach-O and PE-COFF
|
||||||
|
10
configure.in
10
configure.in
@ -1178,12 +1178,10 @@ AC_ARG_WITH([jemalloc],
|
|||||||
[with_jemalloc=yes], [with_jemalloc=no])
|
[with_jemalloc=yes], [with_jemalloc=no])
|
||||||
AS_IF([test "x$with_jemalloc" = xyes],[
|
AS_IF([test "x$with_jemalloc" = xyes],[
|
||||||
AC_CHECK_LIB([jemalloc],[malloc_conf],[], [with_jemalloc=no])
|
AC_CHECK_LIB([jemalloc],[malloc_conf],[], [with_jemalloc=no])
|
||||||
AS_IF([test "x$with_jemalloc" != xyes],[
|
AC_CHECK_HEADER(jemalloc/jemalloc.h, [
|
||||||
AC_CHECK_HEADER(jemalloc/jemalloc.h, [
|
AC_DEFINE(RUBY_ALTERNATIVE_MALLOC_HEADER, [<jemalloc/jemalloc.h>])
|
||||||
AC_DEFINE(RUBY_ALTERNATIVE_MALLOC_HEADER, [<jemalloc/jemalloc.h>])
|
AC_DEFINE(JEMALLOC_MANGLE)
|
||||||
AC_DEFINE(JEMALLOC_MANGLE)
|
with_jemalloc=yes
|
||||||
with_jemalloc=yes
|
|
||||||
])
|
|
||||||
])
|
])
|
||||||
AS_IF([test "x$with_jemalloc" = xyes],
|
AS_IF([test "x$with_jemalloc" = xyes],
|
||||||
[
|
[
|
||||||
|
Loading…
x
Reference in New Issue
Block a user