Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1 | dnl Process this file with autoconf to produce a configure script. |
| 2 | AC_INIT([Makefile.in]) |
| 3 | |
Jason Evans | f3340ca | 2009-06-30 16:17:05 -0700 | [diff] [blame] | 4 | dnl ============================================================================ |
| 5 | dnl Custom macro definitions. |
| 6 | |
| 7 | dnl JE_CFLAGS_APPEND(cflag) |
| 8 | AC_DEFUN([JE_CFLAGS_APPEND], |
| 9 | [ |
| 10 | AC_MSG_CHECKING([whether compiler supports $1]) |
| 11 | TCFLAGS="${CFLAGS}" |
| 12 | if test "x${CFLAGS}" = "x" ; then |
| 13 | CFLAGS="$1" |
| 14 | else |
| 15 | CFLAGS="${CFLAGS} $1" |
| 16 | fi |
Jason Evans | 6684cac | 2012-03-05 12:15:36 -0800 | [diff] [blame] | 17 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM( |
Jason Evans | f3340ca | 2009-06-30 16:17:05 -0700 | [diff] [blame] | 18 | [[ |
| 19 | ]], [[ |
| 20 | return 0; |
| 21 | ]])], |
| 22 | AC_MSG_RESULT([yes]), |
| 23 | AC_MSG_RESULT([no]) |
| 24 | [CFLAGS="${TCFLAGS}"] |
| 25 | ) |
| 26 | ]) |
| 27 | |
| 28 | dnl JE_COMPILABLE(label, hcode, mcode, rvar) |
Jason Evans | 4c2faa8 | 2012-03-13 11:09:23 -0700 | [diff] [blame] | 29 | dnl |
Jason Evans | f3e139a | 2012-03-19 09:54:20 -0700 | [diff] [blame] | 30 | dnl Use AC_LINK_IFELSE() rather than AC_COMPILE_IFELSE() so that linker errors |
Jason Evans | 4c2faa8 | 2012-03-13 11:09:23 -0700 | [diff] [blame] | 31 | dnl cause failure. |
Jason Evans | f3340ca | 2009-06-30 16:17:05 -0700 | [diff] [blame] | 32 | AC_DEFUN([JE_COMPILABLE], |
| 33 | [ |
Jason Evans | 6684cac | 2012-03-05 12:15:36 -0800 | [diff] [blame] | 34 | AC_CACHE_CHECK([whether $1 is compilable], |
| 35 | [$4], |
Jason Evans | f3e139a | 2012-03-19 09:54:20 -0700 | [diff] [blame] | 36 | [AC_LINK_IFELSE([AC_LANG_PROGRAM([$2], |
| 37 | [$3])], |
| 38 | [$4=yes], |
| 39 | [$4=no])]) |
Jason Evans | f3340ca | 2009-06-30 16:17:05 -0700 | [diff] [blame] | 40 | ]) |
| 41 | |
| 42 | dnl ============================================================================ |
| 43 | |
Jason Evans | f576c63 | 2011-11-01 22:27:41 -0700 | [diff] [blame] | 44 | dnl Library revision. |
| 45 | rev=1 |
| 46 | AC_SUBST([rev]) |
| 47 | |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 48 | srcroot=$srcdir |
| 49 | if test "x${srcroot}" = "x." ; then |
| 50 | srcroot="" |
| 51 | else |
| 52 | srcroot="${srcroot}/" |
| 53 | fi |
| 54 | AC_SUBST([srcroot]) |
| 55 | abs_srcroot="`cd \"${srcdir}\"; pwd`/" |
| 56 | AC_SUBST([abs_srcroot]) |
| 57 | |
| 58 | objroot="" |
| 59 | AC_SUBST([objroot]) |
| 60 | abs_objroot="`pwd`/" |
| 61 | AC_SUBST([abs_objroot]) |
| 62 | |
| 63 | dnl Munge install path variables. |
| 64 | if test "x$prefix" = "xNONE" ; then |
| 65 | prefix="/usr/local" |
| 66 | fi |
| 67 | if test "x$exec_prefix" = "xNONE" ; then |
| 68 | exec_prefix=$prefix |
| 69 | fi |
| 70 | PREFIX=$prefix |
| 71 | AC_SUBST([PREFIX]) |
| 72 | BINDIR=`eval echo $bindir` |
| 73 | BINDIR=`eval echo $BINDIR` |
| 74 | AC_SUBST([BINDIR]) |
| 75 | INCLUDEDIR=`eval echo $includedir` |
| 76 | INCLUDEDIR=`eval echo $INCLUDEDIR` |
| 77 | AC_SUBST([INCLUDEDIR]) |
| 78 | LIBDIR=`eval echo $libdir` |
| 79 | LIBDIR=`eval echo $LIBDIR` |
| 80 | AC_SUBST([LIBDIR]) |
| 81 | DATADIR=`eval echo $datadir` |
| 82 | DATADIR=`eval echo $DATADIR` |
| 83 | AC_SUBST([DATADIR]) |
| 84 | MANDIR=`eval echo $mandir` |
| 85 | MANDIR=`eval echo $MANDIR` |
| 86 | AC_SUBST([MANDIR]) |
| 87 | |
Jason Evans | aee7fd2 | 2010-11-24 22:00:02 -0800 | [diff] [blame] | 88 | dnl Support for building documentation. |
| 89 | AC_PATH_PROG([XSLTPROC], [xsltproc], , [$PATH]) |
Jason Evans | 7091b41 | 2012-03-19 09:36:44 -0700 | [diff] [blame] | 90 | if test -d "/usr/share/xml/docbook/stylesheet/docbook-xsl" ; then |
| 91 | DEFAULT_XSLROOT="/usr/share/xml/docbook/stylesheet/docbook-xsl" |
| 92 | elif test -d "/usr/share/sgml/docbook/xsl-stylesheets" ; then |
| 93 | DEFAULT_XSLROOT="/usr/share/sgml/docbook/xsl-stylesheets" |
| 94 | else |
| 95 | dnl Documentation building will fail if this default gets used. |
| 96 | DEFAULT_XSLROOT="" |
| 97 | fi |
Jason Evans | aee7fd2 | 2010-11-24 22:00:02 -0800 | [diff] [blame] | 98 | AC_ARG_WITH([xslroot], |
Jason Evans | 7091b41 | 2012-03-19 09:36:44 -0700 | [diff] [blame] | 99 | [AS_HELP_STRING([--with-xslroot=<path>], [XSL stylesheet root path])], [ |
Jason Evans | aee7fd2 | 2010-11-24 22:00:02 -0800 | [diff] [blame] | 100 | if test "x$with_xslroot" = "xno" ; then |
Jason Evans | 7091b41 | 2012-03-19 09:36:44 -0700 | [diff] [blame] | 101 | XSLROOT="${DEFAULT_XSLROOT}" |
Jason Evans | aee7fd2 | 2010-11-24 22:00:02 -0800 | [diff] [blame] | 102 | else |
| 103 | XSLROOT="${with_xslroot}" |
Jason Evans | 7091b41 | 2012-03-19 09:36:44 -0700 | [diff] [blame] | 104 | fi |
| 105 | ], |
| 106 | XSLROOT="${DEFAULT_XSLROOT}" |
Jason Evans | aee7fd2 | 2010-11-24 22:00:02 -0800 | [diff] [blame] | 107 | ) |
| 108 | AC_SUBST([XSLROOT]) |
| 109 | |
Jason Evans | f3340ca | 2009-06-30 16:17:05 -0700 | [diff] [blame] | 110 | dnl If CFLAGS isn't defined, set CFLAGS to something reasonable. Otherwise, |
| 111 | dnl just prevent autoconf from molesting CFLAGS. |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 112 | CFLAGS=$CFLAGS |
| 113 | AC_PROG_CC |
| 114 | if test "x$CFLAGS" = "x" ; then |
| 115 | no_CFLAGS="yes" |
Jason Evans | cfeccd3 | 2010-03-03 15:48:20 -0800 | [diff] [blame] | 116 | if test "x$GCC" = "xyes" ; then |
| 117 | JE_CFLAGS_APPEND([-std=gnu99]) |
| 118 | JE_CFLAGS_APPEND([-Wall]) |
| 119 | JE_CFLAGS_APPEND([-pipe]) |
| 120 | JE_CFLAGS_APPEND([-g3]) |
| 121 | fi |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 122 | fi |
| 123 | dnl Append EXTRA_CFLAGS to CFLAGS, if defined. |
| 124 | if test "x$EXTRA_CFLAGS" != "x" ; then |
Jason Evans | f3340ca | 2009-06-30 16:17:05 -0700 | [diff] [blame] | 125 | JE_CFLAGS_APPEND([$EXTRA_CFLAGS]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 126 | fi |
| 127 | AC_PROG_CPP |
| 128 | |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 129 | AC_CHECK_SIZEOF([void *]) |
| 130 | if test "x${ac_cv_sizeof_void_p}" = "x8" ; then |
Jason Evans | 94ad2b5 | 2009-12-29 00:09:15 -0800 | [diff] [blame] | 131 | LG_SIZEOF_PTR=3 |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 132 | elif test "x${ac_cv_sizeof_void_p}" = "x4" ; then |
Jason Evans | 94ad2b5 | 2009-12-29 00:09:15 -0800 | [diff] [blame] | 133 | LG_SIZEOF_PTR=2 |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 134 | else |
| 135 | AC_MSG_ERROR([Unsupported pointer size: ${ac_cv_sizeof_void_p}]) |
| 136 | fi |
Jason Evans | 94ad2b5 | 2009-12-29 00:09:15 -0800 | [diff] [blame] | 137 | AC_DEFINE_UNQUOTED([LG_SIZEOF_PTR], [$LG_SIZEOF_PTR]) |
| 138 | |
| 139 | AC_CHECK_SIZEOF([int]) |
| 140 | if test "x${ac_cv_sizeof_int}" = "x8" ; then |
| 141 | LG_SIZEOF_INT=3 |
| 142 | elif test "x${ac_cv_sizeof_int}" = "x4" ; then |
| 143 | LG_SIZEOF_INT=2 |
| 144 | else |
| 145 | AC_MSG_ERROR([Unsupported int size: ${ac_cv_sizeof_int}]) |
| 146 | fi |
| 147 | AC_DEFINE_UNQUOTED([LG_SIZEOF_INT], [$LG_SIZEOF_INT]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 148 | |
Jason Evans | 84c8eef | 2011-03-16 10:30:13 -0700 | [diff] [blame] | 149 | AC_CHECK_SIZEOF([long]) |
| 150 | if test "x${ac_cv_sizeof_long}" = "x8" ; then |
| 151 | LG_SIZEOF_LONG=3 |
| 152 | elif test "x${ac_cv_sizeof_long}" = "x4" ; then |
| 153 | LG_SIZEOF_LONG=2 |
| 154 | else |
| 155 | AC_MSG_ERROR([Unsupported long size: ${ac_cv_sizeof_long}]) |
| 156 | fi |
| 157 | AC_DEFINE_UNQUOTED([LG_SIZEOF_LONG], [$LG_SIZEOF_LONG]) |
| 158 | |
Jason Evans | d81e4bd | 2012-03-06 14:57:45 -0800 | [diff] [blame] | 159 | AC_CHECK_SIZEOF([intmax_t]) |
| 160 | if test "x${ac_cv_sizeof_intmax_t}" = "x16" ; then |
| 161 | LG_SIZEOF_INTMAX_T=4 |
| 162 | elif test "x${ac_cv_sizeof_intmax_t}" = "x8" ; then |
| 163 | LG_SIZEOF_INTMAX_T=3 |
| 164 | elif test "x${ac_cv_sizeof_intmax_t}" = "x4" ; then |
| 165 | LG_SIZEOF_INTMAX_T=2 |
| 166 | else |
| 167 | AC_MSG_ERROR([Unsupported intmax_t size: ${ac_cv_sizeof_long}]) |
| 168 | fi |
| 169 | AC_DEFINE_UNQUOTED([LG_SIZEOF_INTMAX_T], [$LG_SIZEOF_INTMAX_T]) |
| 170 | |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 171 | AC_CANONICAL_HOST |
| 172 | dnl CPU-specific settings. |
| 173 | CPU_SPINWAIT="" |
| 174 | case "${host_cpu}" in |
| 175 | i[[345]]86) |
| 176 | ;; |
| 177 | i686) |
Jason Evans | f3340ca | 2009-06-30 16:17:05 -0700 | [diff] [blame] | 178 | JE_COMPILABLE([__asm__], [], [[__asm__ volatile("pause"); return 0;]], |
Jason Evans | 6684cac | 2012-03-05 12:15:36 -0800 | [diff] [blame] | 179 | [je_cv_asm]) |
| 180 | if test "x${je_cv_asm}" = "xyes" ; then |
Jason Evans | f3340ca | 2009-06-30 16:17:05 -0700 | [diff] [blame] | 181 | CPU_SPINWAIT='__asm__ volatile("pause")' |
| 182 | fi |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 183 | ;; |
| 184 | x86_64) |
Jason Evans | f3340ca | 2009-06-30 16:17:05 -0700 | [diff] [blame] | 185 | JE_COMPILABLE([__asm__ syntax], [], |
Jason Evans | 6684cac | 2012-03-05 12:15:36 -0800 | [diff] [blame] | 186 | [[__asm__ volatile("pause"); return 0;]], [je_cv_asm]) |
| 187 | if test "x${je_cv_asm}" = "xyes" ; then |
Jason Evans | f3340ca | 2009-06-30 16:17:05 -0700 | [diff] [blame] | 188 | CPU_SPINWAIT='__asm__ volatile("pause")' |
| 189 | fi |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 190 | ;; |
| 191 | *) |
| 192 | ;; |
| 193 | esac |
| 194 | AC_DEFINE_UNQUOTED([CPU_SPINWAIT], [$CPU_SPINWAIT]) |
| 195 | |
Antony Dovgal | 2bd3cbc | 2011-10-13 09:33:33 +0400 | [diff] [blame] | 196 | LD_PRELOAD_VAR="LD_PRELOAD" |
Jason Evans | f576c63 | 2011-11-01 22:27:41 -0700 | [diff] [blame] | 197 | so="so" |
Mike Hommey | 5bee66d | 2012-04-16 16:30:24 +0200 | [diff] [blame^] | 198 | o="o" |
| 199 | a="a" |
| 200 | exe= |
| 201 | lib="lib" |
Antony Dovgal | 2bd3cbc | 2011-10-13 09:33:33 +0400 | [diff] [blame] | 202 | |
Jason Evans | 7372b15 | 2012-02-10 20:22:09 -0800 | [diff] [blame] | 203 | dnl Heap profiling uses the log(3) function. |
| 204 | LIBS="$LIBS -lm" |
| 205 | |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 206 | dnl Platform-specific settings. abi and RPATH can probably be determined |
| 207 | dnl programmatically, but doing so is error-prone, which makes it generally |
| 208 | dnl not worth the trouble. |
| 209 | dnl |
| 210 | dnl Define cpp macros in CPPFLAGS, rather than doing AC_DEFINE(macro), since the |
| 211 | dnl definitions need to be seen before any headers are included, which is a pain |
| 212 | dnl to make happen otherwise. |
Jason Evans | 59ae276 | 2012-04-16 17:52:27 -0700 | [diff] [blame] | 213 | default_munmap="1" |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 214 | case "${host}" in |
| 215 | *-*-darwin*) |
Jason Evans | 9022bf9 | 2012-03-23 16:14:08 -0700 | [diff] [blame] | 216 | CFLAGS="$CFLAGS -fno-common" |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 217 | abi="macho" |
Jason Evans | e24c7af | 2012-03-19 10:21:17 -0700 | [diff] [blame] | 218 | AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 219 | RPATH="" |
Antony Dovgal | 2bd3cbc | 2011-10-13 09:33:33 +0400 | [diff] [blame] | 220 | LD_PRELOAD_VAR="DYLD_INSERT_LIBRARIES" |
Jason Evans | f576c63 | 2011-11-01 22:27:41 -0700 | [diff] [blame] | 221 | so="dylib" |
Jason Evans | b80581d | 2012-03-23 16:17:43 -0700 | [diff] [blame] | 222 | force_tls="0" |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 223 | ;; |
| 224 | *-*-freebsd*) |
| 225 | CFLAGS="$CFLAGS" |
| 226 | abi="elf" |
Jason Evans | e24c7af | 2012-03-19 10:21:17 -0700 | [diff] [blame] | 227 | AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 228 | RPATH="-Wl,-rpath," |
Jason Evans | fd4fcef | 2012-03-23 17:40:58 -0700 | [diff] [blame] | 229 | force_lazy_lock="1" |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 230 | ;; |
| 231 | *-*-linux*) |
| 232 | CFLAGS="$CFLAGS" |
| 233 | CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" |
| 234 | abi="elf" |
Jason Evans | e24c7af | 2012-03-19 10:21:17 -0700 | [diff] [blame] | 235 | AC_DEFINE([JEMALLOC_PURGE_MADVISE_DONTNEED], [ ]) |
Jason Evans | 02b2312 | 2012-04-05 11:06:23 -0700 | [diff] [blame] | 236 | AC_DEFINE([JEMALLOC_THREADED_INIT], [ ]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 237 | RPATH="-Wl,-rpath," |
Jason Evans | 59ae276 | 2012-04-16 17:52:27 -0700 | [diff] [blame] | 238 | default_munmap="0" |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 239 | ;; |
| 240 | *-*-netbsd*) |
| 241 | AC_MSG_CHECKING([ABI]) |
| 242 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM( |
| 243 | [[#ifdef __ELF__ |
| 244 | /* ELF */ |
| 245 | #else |
| 246 | #error aout |
| 247 | #endif |
| 248 | ]])], |
| 249 | [CFLAGS="$CFLAGS"; abi="elf"], |
| 250 | [abi="aout"]) |
| 251 | AC_MSG_RESULT([$abi]) |
Jason Evans | e24c7af | 2012-03-19 10:21:17 -0700 | [diff] [blame] | 252 | AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 253 | RPATH="-Wl,-rpath," |
| 254 | ;; |
| 255 | *-*-solaris2*) |
| 256 | CFLAGS="$CFLAGS" |
| 257 | abi="elf" |
| 258 | RPATH="-Wl,-R," |
| 259 | dnl Solaris needs this for sigwait(). |
| 260 | CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS" |
| 261 | LIBS="$LIBS -lposix4 -lsocket -lnsl" |
| 262 | ;; |
Antony Dovgal | 2bd3cbc | 2011-10-13 09:33:33 +0400 | [diff] [blame] | 263 | *-ibm-aix*) |
| 264 | if "$LG_SIZEOF_PTR" = "8"; then |
| 265 | dnl 64bit AIX |
| 266 | LD_PRELOAD_VAR="LDR_PRELOAD64" |
| 267 | else |
| 268 | dnl 32bit AIX |
| 269 | LD_PRELOAD_VAR="LDR_PRELOAD" |
| 270 | fi |
| 271 | abi="xcoff" |
| 272 | RPATH="-Wl,-rpath," |
| 273 | ;; |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 274 | *) |
| 275 | AC_MSG_RESULT([Unsupported operating system: ${host}]) |
| 276 | abi="elf" |
| 277 | RPATH="-Wl,-rpath," |
| 278 | ;; |
| 279 | esac |
| 280 | AC_SUBST([abi]) |
| 281 | AC_SUBST([RPATH]) |
Antony Dovgal | 2bd3cbc | 2011-10-13 09:33:33 +0400 | [diff] [blame] | 282 | AC_SUBST([LD_PRELOAD_VAR]) |
Jason Evans | f576c63 | 2011-11-01 22:27:41 -0700 | [diff] [blame] | 283 | AC_SUBST([so]) |
Mike Hommey | 5bee66d | 2012-04-16 16:30:24 +0200 | [diff] [blame^] | 284 | AC_SUBST([o]) |
| 285 | AC_SUBST([a]) |
| 286 | AC_SUBST([exe]) |
| 287 | AC_SUBST([lib]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 288 | |
Jason Evans | fa5d245 | 2011-03-15 10:25:59 -0700 | [diff] [blame] | 289 | JE_COMPILABLE([__attribute__ syntax], |
| 290 | [static __attribute__((unused)) void foo(void){}], |
| 291 | [], |
Jason Evans | 6684cac | 2012-03-05 12:15:36 -0800 | [diff] [blame] | 292 | [je_cv_attribute]) |
| 293 | if test "x${je_cv_attribute}" = "xyes" ; then |
Jason Evans | fa5d245 | 2011-03-15 10:25:59 -0700 | [diff] [blame] | 294 | AC_DEFINE([JEMALLOC_HAVE_ATTR], [ ]) |
| 295 | if test "x${GCC}" = "xyes" -a "x${abi}" = "xelf"; then |
| 296 | JE_CFLAGS_APPEND([-fvisibility=hidden]) |
| 297 | fi |
| 298 | fi |
Jason Evans | 3cc1f1a | 2012-04-03 22:30:05 -0700 | [diff] [blame] | 299 | dnl Check for tls_model attribute support (clang 3.0 still lacks support). |
| 300 | SAVED_CFLAGS="${CFLAGS}" |
| 301 | JE_CFLAGS_APPEND([-Werror]) |
| 302 | JE_COMPILABLE([tls_model attribute], [], |
| 303 | [static __thread int |
| 304 | __attribute__((tls_model("initial-exec"))) foo; |
| 305 | foo = 0;], |
| 306 | [je_cv_tls_model]) |
| 307 | CFLAGS="${SAVED_CFLAGS}" |
| 308 | if test "x${je_cv_tls_model}" = "xyes" ; then |
| 309 | AC_DEFINE([JEMALLOC_TLS_MODEL], |
| 310 | [__attribute__((tls_model("initial-exec")))]) |
| 311 | else |
| 312 | AC_DEFINE([JEMALLOC_TLS_MODEL], [ ]) |
| 313 | fi |
Jason Evans | fa5d245 | 2011-03-15 10:25:59 -0700 | [diff] [blame] | 314 | |
Jason Evans | cfdc8cf | 2010-11-30 16:50:58 -0800 | [diff] [blame] | 315 | JE_COMPILABLE([mremap(...MREMAP_FIXED...)], [ |
| 316 | #define _GNU_SOURCE |
| 317 | #include <sys/mman.h> |
| 318 | ], [ |
| 319 | void *p = mremap((void *)0, 0, 0, MREMAP_MAYMOVE|MREMAP_FIXED, (void *)0); |
Jason Evans | 6684cac | 2012-03-05 12:15:36 -0800 | [diff] [blame] | 320 | ], [je_cv_mremap_fixed]) |
| 321 | if test "x${je_cv_mremap_fixed}" = "xyes" ; then |
Jason Evans | e24c7af | 2012-03-19 10:21:17 -0700 | [diff] [blame] | 322 | AC_DEFINE([JEMALLOC_MREMAP_FIXED], [ ]) |
Jason Evans | cfdc8cf | 2010-11-30 16:50:58 -0800 | [diff] [blame] | 323 | fi |
| 324 | |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 325 | dnl Support optional additions to rpath. |
| 326 | AC_ARG_WITH([rpath], |
Jason Evans | 90895cf | 2009-12-29 00:09:15 -0800 | [diff] [blame] | 327 | [AS_HELP_STRING([--with-rpath=<rpath>], [Colon-separated rpath (ELF systems only)])], |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 328 | if test "x$with_rpath" = "xno" ; then |
| 329 | RPATH_EXTRA= |
| 330 | else |
| 331 | RPATH_EXTRA="`echo $with_rpath | tr \":\" \" \"`" |
| 332 | fi, |
| 333 | RPATH_EXTRA= |
| 334 | ) |
| 335 | AC_SUBST([RPATH_EXTRA]) |
| 336 | |
| 337 | dnl Disable rules that do automatic regeneration of configure output by default. |
| 338 | AC_ARG_ENABLE([autogen], |
Jason Evans | 78d815c | 2010-01-17 14:06:20 -0800 | [diff] [blame] | 339 | [AS_HELP_STRING([--enable-autogen], [Automatically regenerate configure output])], |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 340 | if test "x$enable_autogen" = "xno" ; then |
| 341 | enable_autogen="0" |
| 342 | else |
| 343 | enable_autogen="1" |
| 344 | fi |
| 345 | , |
| 346 | enable_autogen="0" |
| 347 | ) |
| 348 | AC_SUBST([enable_autogen]) |
| 349 | |
| 350 | AC_PROG_INSTALL |
| 351 | AC_PROG_RANLIB |
| 352 | AC_PATH_PROG([AR], [ar], , [$PATH]) |
| 353 | AC_PATH_PROG([LD], [ld], , [$PATH]) |
| 354 | AC_PATH_PROG([AUTOCONF], [autoconf], , [$PATH]) |
| 355 | |
Jason Evans | 0a0bbf6 | 2012-03-13 12:55:21 -0700 | [diff] [blame] | 356 | public_syms="malloc_conf malloc_message malloc calloc posix_memalign aligned_alloc realloc free malloc_usable_size malloc_stats_print mallctl mallctlnametomib mallctlbymib" |
Jason Evans | 7e77eaf | 2012-03-02 17:47:37 -0800 | [diff] [blame] | 357 | |
| 358 | dnl Check for allocator-related functions that should be wrapped. |
| 359 | AC_CHECK_FUNC([memalign], |
Jason Evans | e24c7af | 2012-03-19 10:21:17 -0700 | [diff] [blame] | 360 | [AC_DEFINE([JEMALLOC_OVERRIDE_MEMALIGN], [ ]) |
Jason Evans | 7e77eaf | 2012-03-02 17:47:37 -0800 | [diff] [blame] | 361 | public_syms="${public_syms} memalign"]) |
| 362 | AC_CHECK_FUNC([valloc], |
Jason Evans | e24c7af | 2012-03-19 10:21:17 -0700 | [diff] [blame] | 363 | [AC_DEFINE([JEMALLOC_OVERRIDE_VALLOC], [ ]) |
Jason Evans | 7e77eaf | 2012-03-02 17:47:37 -0800 | [diff] [blame] | 364 | public_syms="${public_syms} valloc"]) |
| 365 | |
| 366 | dnl Support the experimental API by default. |
| 367 | AC_ARG_ENABLE([experimental], |
| 368 | [AS_HELP_STRING([--disable-experimental], |
| 369 | [Disable support for the experimental API])], |
| 370 | [if test "x$enable_experimental" = "xno" ; then |
| 371 | enable_experimental="0" |
| 372 | else |
| 373 | enable_experimental="1" |
| 374 | fi |
| 375 | ], |
| 376 | [enable_experimental="1"] |
| 377 | ) |
| 378 | if test "x$enable_experimental" = "x1" ; then |
| 379 | AC_DEFINE([JEMALLOC_EXPERIMENTAL], [ ]) |
| 380 | public_syms="${public_syms} allocm dallocm nallocm rallocm sallocm" |
| 381 | fi |
| 382 | AC_SUBST([enable_experimental]) |
| 383 | |
Jason Evans | 0a5489e | 2012-03-01 17:19:20 -0800 | [diff] [blame] | 384 | dnl Perform no name mangling by default. |
| 385 | AC_ARG_WITH([mangling], |
| 386 | [AS_HELP_STRING([--with-mangling=<map>], [Mangle symbols in <map>])], |
| 387 | [mangling_map="$with_mangling"], [mangling_map=""]) |
| 388 | for nm in `echo ${mangling_map} |tr ',' ' '` ; do |
Jason Evans | 08fc3b2 | 2012-03-12 15:07:53 -0700 | [diff] [blame] | 389 | k="`echo ${nm} |tr ':' ' ' |awk '{print $1}'`" |
| 390 | n="je_${k}" |
Jason Evans | 0a5489e | 2012-03-01 17:19:20 -0800 | [diff] [blame] | 391 | m=`echo ${nm} |tr ':' ' ' |awk '{print $2}'` |
| 392 | AC_DEFINE_UNQUOTED([${n}], [${m}]) |
Jason Evans | 08fc3b2 | 2012-03-12 15:07:53 -0700 | [diff] [blame] | 393 | dnl Remove key from public_syms so that it isn't redefined later. |
| 394 | public_syms=`for sym in ${public_syms}; do echo "${sym}"; done |grep -v "^${k}\$" |tr '\n' ' '` |
Jason Evans | 0a5489e | 2012-03-01 17:19:20 -0800 | [diff] [blame] | 395 | done |
| 396 | |
Jason Evans | 90895cf | 2009-12-29 00:09:15 -0800 | [diff] [blame] | 397 | dnl Do not prefix public APIs by default. |
| 398 | AC_ARG_WITH([jemalloc_prefix], |
| 399 | [AS_HELP_STRING([--with-jemalloc-prefix=<prefix>], [Prefix to prepend to all public APIs])], |
Jason Evans | b0fd501 | 2010-01-17 01:49:20 -0800 | [diff] [blame] | 400 | [JEMALLOC_PREFIX="$with_jemalloc_prefix"], |
Jason Evans | 2dbecf1 | 2010-09-05 10:35:13 -0700 | [diff] [blame] | 401 | [if test "x$abi" != "xmacho" ; then |
| 402 | JEMALLOC_PREFIX="" |
| 403 | else |
| 404 | JEMALLOC_PREFIX="je_" |
| 405 | fi] |
Jason Evans | 90895cf | 2009-12-29 00:09:15 -0800 | [diff] [blame] | 406 | ) |
| 407 | if test "x$JEMALLOC_PREFIX" != "x" ; then |
Jason Evans | e733970 | 2010-10-23 18:37:06 -0700 | [diff] [blame] | 408 | JEMALLOC_CPREFIX=`echo ${JEMALLOC_PREFIX} | tr "a-z" "A-Z"` |
| 409 | AC_DEFINE_UNQUOTED([JEMALLOC_PREFIX], ["$JEMALLOC_PREFIX"]) |
| 410 | AC_DEFINE_UNQUOTED([JEMALLOC_CPREFIX], ["$JEMALLOC_CPREFIX"]) |
Jason Evans | 90895cf | 2009-12-29 00:09:15 -0800 | [diff] [blame] | 411 | fi |
Jason Evans | 0a5489e | 2012-03-01 17:19:20 -0800 | [diff] [blame] | 412 | dnl Generate macros to rename public symbols. All public symbols are prefixed |
| 413 | dnl with je_ in the source code, so these macro definitions are needed even if |
| 414 | dnl --with-jemalloc-prefix wasn't specified. |
Jason Evans | 7e77eaf | 2012-03-02 17:47:37 -0800 | [diff] [blame] | 415 | for stem in ${public_syms}; do |
Jason Evans | 0a5489e | 2012-03-01 17:19:20 -0800 | [diff] [blame] | 416 | n="je_${stem}" |
| 417 | m="${JEMALLOC_PREFIX}${stem}" |
| 418 | AC_DEFINE_UNQUOTED([${n}], [${m}]) |
| 419 | done |
Jason Evans | 90895cf | 2009-12-29 00:09:15 -0800 | [diff] [blame] | 420 | |
Jason Evans | 746e77a | 2011-07-30 16:40:52 -0700 | [diff] [blame] | 421 | dnl Do not mangle library-private APIs by default. |
| 422 | AC_ARG_WITH([private_namespace], |
| 423 | [AS_HELP_STRING([--with-private-namespace=<prefix>], [Prefix to prepend to all library-private APIs])], |
| 424 | [JEMALLOC_PRIVATE_NAMESPACE="$with_private_namespace"], |
| 425 | [JEMALLOC_PRIVATE_NAMESPACE=""] |
| 426 | ) |
| 427 | AC_DEFINE_UNQUOTED([JEMALLOC_PRIVATE_NAMESPACE], ["$JEMALLOC_PRIVATE_NAMESPACE"]) |
| 428 | if test "x$JEMALLOC_PRIVATE_NAMESPACE" != "x" ; then |
| 429 | AC_DEFINE_UNQUOTED([JEMALLOC_N(string_that_no_one_should_want_to_use_as_a_jemalloc_private_namespace_prefix)], [${JEMALLOC_PRIVATE_NAMESPACE}##string_that_no_one_should_want_to_use_as_a_jemalloc_private_namespace_prefix]) |
| 430 | else |
| 431 | AC_DEFINE_UNQUOTED([JEMALLOC_N(string_that_no_one_should_want_to_use_as_a_jemalloc_private_namespace_prefix)], [string_that_no_one_should_want_to_use_as_a_jemalloc_private_namespace_prefix]) |
| 432 | fi |
| 433 | |
Jason Evans | b0fd501 | 2010-01-17 01:49:20 -0800 | [diff] [blame] | 434 | dnl Do not add suffix to installed files by default. |
| 435 | AC_ARG_WITH([install_suffix], |
| 436 | [AS_HELP_STRING([--with-install-suffix=<suffix>], [Suffix to append to all installed files])], |
| 437 | [INSTALL_SUFFIX="$with_install_suffix"], |
| 438 | [INSTALL_SUFFIX=] |
| 439 | ) |
| 440 | install_suffix="$INSTALL_SUFFIX" |
| 441 | AC_SUBST([install_suffix]) |
| 442 | |
Jason Evans | aee7fd2 | 2010-11-24 22:00:02 -0800 | [diff] [blame] | 443 | cfgoutputs_in="${srcroot}Makefile.in" |
| 444 | cfgoutputs_in="${cfgoutputs_in} ${srcroot}doc/html.xsl.in" |
| 445 | cfgoutputs_in="${cfgoutputs_in} ${srcroot}doc/manpages.xsl.in" |
| 446 | cfgoutputs_in="${cfgoutputs_in} ${srcroot}doc/jemalloc.xml.in" |
Jason Evans | 0656ec0 | 2010-04-07 23:37:35 -0700 | [diff] [blame] | 447 | cfgoutputs_in="${cfgoutputs_in} ${srcroot}include/jemalloc/jemalloc.h.in" |
| 448 | cfgoutputs_in="${cfgoutputs_in} ${srcroot}include/jemalloc/internal/jemalloc_internal.h.in" |
Jason Evans | 9f3b0a7 | 2010-10-07 09:53:26 -0700 | [diff] [blame] | 449 | cfgoutputs_in="${cfgoutputs_in} ${srcroot}test/jemalloc_test.h.in" |
Jason Evans | b0fd501 | 2010-01-17 01:49:20 -0800 | [diff] [blame] | 450 | |
Jason Evans | aee7fd2 | 2010-11-24 22:00:02 -0800 | [diff] [blame] | 451 | cfgoutputs_out="Makefile" |
| 452 | cfgoutputs_out="${cfgoutputs_out} doc/html.xsl" |
| 453 | cfgoutputs_out="${cfgoutputs_out} doc/manpages.xsl" |
| 454 | cfgoutputs_out="${cfgoutputs_out} doc/jemalloc${install_suffix}.xml" |
Jason Evans | 376b152 | 2010-02-11 14:45:59 -0800 | [diff] [blame] | 455 | cfgoutputs_out="${cfgoutputs_out} include/jemalloc/jemalloc${install_suffix}.h" |
| 456 | cfgoutputs_out="${cfgoutputs_out} include/jemalloc/internal/jemalloc_internal.h" |
Jason Evans | 9f3b0a7 | 2010-10-07 09:53:26 -0700 | [diff] [blame] | 457 | cfgoutputs_out="${cfgoutputs_out} test/jemalloc_test.h" |
Jason Evans | b0fd501 | 2010-01-17 01:49:20 -0800 | [diff] [blame] | 458 | |
Jason Evans | aee7fd2 | 2010-11-24 22:00:02 -0800 | [diff] [blame] | 459 | cfgoutputs_tup="Makefile" |
| 460 | cfgoutputs_tup="${cfgoutputs_tup} doc/html.xsl:doc/html.xsl.in" |
| 461 | cfgoutputs_tup="${cfgoutputs_tup} doc/manpages.xsl:doc/manpages.xsl.in" |
| 462 | cfgoutputs_tup="${cfgoutputs_tup} doc/jemalloc${install_suffix}.xml:doc/jemalloc.xml.in" |
Jason Evans | 376b152 | 2010-02-11 14:45:59 -0800 | [diff] [blame] | 463 | cfgoutputs_tup="${cfgoutputs_tup} include/jemalloc/jemalloc${install_suffix}.h:include/jemalloc/jemalloc.h.in" |
| 464 | cfgoutputs_tup="${cfgoutputs_tup} include/jemalloc/internal/jemalloc_internal.h" |
Jason Evans | 9f3b0a7 | 2010-10-07 09:53:26 -0700 | [diff] [blame] | 465 | cfgoutputs_tup="${cfgoutputs_tup} test/jemalloc_test.h:test/jemalloc_test.h.in" |
Jason Evans | b0fd501 | 2010-01-17 01:49:20 -0800 | [diff] [blame] | 466 | |
Jason Evans | 0656ec0 | 2010-04-07 23:37:35 -0700 | [diff] [blame] | 467 | cfghdrs_in="${srcroot}include/jemalloc/jemalloc_defs.h.in" |
Jason Evans | b172610 | 2012-02-28 16:50:47 -0800 | [diff] [blame] | 468 | cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/size_classes.sh" |
Jason Evans | b0fd501 | 2010-01-17 01:49:20 -0800 | [diff] [blame] | 469 | |
Jason Evans | 376b152 | 2010-02-11 14:45:59 -0800 | [diff] [blame] | 470 | cfghdrs_out="include/jemalloc/jemalloc_defs${install_suffix}.h" |
Jason Evans | b172610 | 2012-02-28 16:50:47 -0800 | [diff] [blame] | 471 | cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/size_classes.h" |
Jason Evans | b0fd501 | 2010-01-17 01:49:20 -0800 | [diff] [blame] | 472 | |
Jason Evans | 376b152 | 2010-02-11 14:45:59 -0800 | [diff] [blame] | 473 | cfghdrs_tup="include/jemalloc/jemalloc_defs${install_suffix}.h:include/jemalloc/jemalloc_defs.h.in" |
Jason Evans | b0fd501 | 2010-01-17 01:49:20 -0800 | [diff] [blame] | 474 | |
Jason Evans | 355b438 | 2010-09-20 19:20:48 -0700 | [diff] [blame] | 475 | dnl Do not silence irrelevant compiler warnings by default, since enabling this |
| 476 | dnl option incurs a performance penalty. |
| 477 | AC_ARG_ENABLE([cc-silence], |
| 478 | [AS_HELP_STRING([--enable-cc-silence], |
| 479 | [Silence irrelevant compiler warnings])], |
| 480 | [if test "x$enable_cc_silence" = "xno" ; then |
| 481 | enable_cc_silence="0" |
| 482 | else |
| 483 | enable_cc_silence="1" |
| 484 | fi |
| 485 | ], |
| 486 | [enable_cc_silence="0"] |
| 487 | ) |
| 488 | if test "x$enable_cc_silence" = "x1" ; then |
Jason Evans | e24c7af | 2012-03-19 10:21:17 -0700 | [diff] [blame] | 489 | AC_DEFINE([JEMALLOC_CC_SILENCE], [ ]) |
Jason Evans | 355b438 | 2010-09-20 19:20:48 -0700 | [diff] [blame] | 490 | fi |
| 491 | |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 492 | dnl Do not compile with debugging by default. |
| 493 | AC_ARG_ENABLE([debug], |
| 494 | [AS_HELP_STRING([--enable-debug], [Build debugging code])], |
| 495 | [if test "x$enable_debug" = "xno" ; then |
| 496 | enable_debug="0" |
| 497 | else |
| 498 | enable_debug="1" |
| 499 | fi |
| 500 | ], |
| 501 | [enable_debug="0"] |
| 502 | ) |
| 503 | if test "x$enable_debug" = "x1" ; then |
| 504 | AC_DEFINE([JEMALLOC_DEBUG], [ ]) |
Jason Evans | 2dbecf1 | 2010-09-05 10:35:13 -0700 | [diff] [blame] | 505 | AC_DEFINE([JEMALLOC_IVSALLOC], [ ]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 506 | fi |
| 507 | AC_SUBST([enable_debug]) |
| 508 | |
| 509 | dnl Only optimize if not debugging. |
| 510 | if test "x$enable_debug" = "x0" -a "x$no_CFLAGS" = "xyes" ; then |
| 511 | dnl Make sure that an optimization flag was not specified in EXTRA_CFLAGS. |
Jason Evans | f3340ca | 2009-06-30 16:17:05 -0700 | [diff] [blame] | 512 | optimize="no" |
| 513 | echo "$EXTRA_CFLAGS" | grep "\-O" >/dev/null || optimize="yes" |
| 514 | if test "x${optimize}" = "xyes" ; then |
| 515 | if test "x$GCC" = "xyes" ; then |
| 516 | JE_CFLAGS_APPEND([-O3]) |
| 517 | JE_CFLAGS_APPEND([-funroll-loops]) |
Jason Evans | f3340ca | 2009-06-30 16:17:05 -0700 | [diff] [blame] | 518 | else |
| 519 | JE_CFLAGS_APPEND([-O]) |
| 520 | fi |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 521 | fi |
| 522 | fi |
| 523 | |
Jason Evans | d073a32 | 2012-02-28 20:41:16 -0800 | [diff] [blame] | 524 | dnl Enable statistics calculation by default. |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 525 | AC_ARG_ENABLE([stats], |
Jason Evans | 777c191 | 2012-02-28 20:49:22 -0800 | [diff] [blame] | 526 | [AS_HELP_STRING([--disable-stats], |
| 527 | [Disable statistics calculation/reporting])], |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 528 | [if test "x$enable_stats" = "xno" ; then |
| 529 | enable_stats="0" |
| 530 | else |
| 531 | enable_stats="1" |
| 532 | fi |
| 533 | ], |
Jason Evans | d073a32 | 2012-02-28 20:41:16 -0800 | [diff] [blame] | 534 | [enable_stats="1"] |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 535 | ) |
| 536 | if test "x$enable_stats" = "x1" ; then |
| 537 | AC_DEFINE([JEMALLOC_STATS], [ ]) |
| 538 | fi |
| 539 | AC_SUBST([enable_stats]) |
| 540 | |
Jason Evans | 6109fe0 | 2010-02-10 10:37:56 -0800 | [diff] [blame] | 541 | dnl Do not enable profiling by default. |
| 542 | AC_ARG_ENABLE([prof], |
| 543 | [AS_HELP_STRING([--enable-prof], [Enable allocation profiling])], |
| 544 | [if test "x$enable_prof" = "xno" ; then |
| 545 | enable_prof="0" |
| 546 | else |
| 547 | enable_prof="1" |
| 548 | fi |
| 549 | ], |
| 550 | [enable_prof="0"] |
| 551 | ) |
Jason Evans | 77f350b | 2011-03-15 22:23:12 -0700 | [diff] [blame] | 552 | if test "x$enable_prof" = "x1" ; then |
| 553 | backtrace_method="" |
Jason Evans | b27805b | 2010-02-10 18:15:53 -0800 | [diff] [blame] | 554 | else |
Jason Evans | 77f350b | 2011-03-15 22:23:12 -0700 | [diff] [blame] | 555 | backtrace_method="N/A" |
Jason Evans | b27805b | 2010-02-10 18:15:53 -0800 | [diff] [blame] | 556 | fi |
Jason Evans | 77f350b | 2011-03-15 22:23:12 -0700 | [diff] [blame] | 557 | |
Jason Evans | 6109fe0 | 2010-02-10 10:37:56 -0800 | [diff] [blame] | 558 | AC_ARG_ENABLE([prof-libunwind], |
| 559 | [AS_HELP_STRING([--enable-prof-libunwind], [Use libunwind for backtracing])], |
| 560 | [if test "x$enable_prof_libunwind" = "xno" ; then |
| 561 | enable_prof_libunwind="0" |
| 562 | else |
| 563 | enable_prof_libunwind="1" |
| 564 | fi |
| 565 | ], |
| 566 | [enable_prof_libunwind="0"] |
| 567 | ) |
Jason Evans | ca6bd4f | 2010-03-02 14:12:58 -0800 | [diff] [blame] | 568 | AC_ARG_WITH([static_libunwind], |
| 569 | [AS_HELP_STRING([--with-static-libunwind=<libunwind.a>], |
| 570 | [Path to static libunwind library; use rather than dynamically linking])], |
| 571 | if test "x$with_static_libunwind" = "xno" ; then |
| 572 | LUNWIND="-lunwind" |
| 573 | else |
| 574 | if test ! -f "$with_static_libunwind" ; then |
| 575 | AC_MSG_ERROR([Static libunwind not found: $with_static_libunwind]) |
| 576 | fi |
| 577 | LUNWIND="$with_static_libunwind" |
| 578 | fi, |
| 579 | LUNWIND="-lunwind" |
| 580 | ) |
Jason Evans | 77f350b | 2011-03-15 22:23:12 -0700 | [diff] [blame] | 581 | if test "x$backtrace_method" = "x" -a "x$enable_prof_libunwind" = "x1" ; then |
| 582 | AC_CHECK_HEADERS([libunwind.h], , [enable_prof_libunwind="0"]) |
| 583 | if test "x$LUNWIND" = "x-lunwind" ; then |
| 584 | AC_CHECK_LIB([unwind], [backtrace], [LIBS="$LIBS $LUNWIND"], |
| 585 | [enable_prof_libunwind="0"]) |
| 586 | else |
| 587 | LIBS="$LIBS $LUNWIND" |
| 588 | fi |
| 589 | if test "x${enable_prof_libunwind}" = "x1" ; then |
| 590 | backtrace_method="libunwind" |
| 591 | AC_DEFINE([JEMALLOC_PROF_LIBUNWIND], [ ]) |
| 592 | fi |
| 593 | fi |
| 594 | |
| 595 | AC_ARG_ENABLE([prof-libgcc], |
| 596 | [AS_HELP_STRING([--disable-prof-libgcc], |
| 597 | [Do not use libgcc for backtracing])], |
| 598 | [if test "x$enable_prof_libgcc" = "xno" ; then |
| 599 | enable_prof_libgcc="0" |
| 600 | else |
| 601 | enable_prof_libgcc="1" |
| 602 | fi |
| 603 | ], |
| 604 | [enable_prof_libgcc="1"] |
| 605 | ) |
| 606 | if test "x$backtrace_method" = "x" -a "x$enable_prof_libgcc" = "x1" \ |
| 607 | -a "x$GCC" = "xyes" ; then |
| 608 | AC_CHECK_HEADERS([unwind.h], , [enable_prof_libgcc="0"]) |
| 609 | AC_CHECK_LIB([gcc], [_Unwind_Backtrace], [LIBS="$LIBS -lgcc"], [enable_prof_libgcc="0"]) |
| 610 | dnl The following is conservative, in that it only has entries for CPUs on |
| 611 | dnl which jemalloc has been tested. |
| 612 | AC_MSG_CHECKING([libgcc-based backtracing reliability on ${host_cpu}]) |
| 613 | case "${host_cpu}" in |
| 614 | i[[3456]]86) |
| 615 | AC_MSG_RESULT([unreliable]) |
| 616 | enable_prof_libgcc="0"; |
| 617 | ;; |
| 618 | x86_64) |
| 619 | AC_MSG_RESULT([reliable]) |
| 620 | ;; |
| 621 | *) |
| 622 | AC_MSG_RESULT([unreliable]) |
| 623 | enable_prof_libgcc="0"; |
| 624 | ;; |
| 625 | esac |
| 626 | if test "x${enable_prof_libgcc}" = "x1" ; then |
| 627 | backtrace_method="libgcc" |
| 628 | AC_DEFINE([JEMALLOC_PROF_LIBGCC], [ ]) |
| 629 | fi |
| 630 | else |
| 631 | enable_prof_libgcc="0" |
| 632 | fi |
| 633 | |
| 634 | AC_ARG_ENABLE([prof-gcc], |
| 635 | [AS_HELP_STRING([--disable-prof-gcc], |
| 636 | [Do not use gcc intrinsics for backtracing])], |
| 637 | [if test "x$enable_prof_gcc" = "xno" ; then |
| 638 | enable_prof_gcc="0" |
| 639 | else |
| 640 | enable_prof_gcc="1" |
| 641 | fi |
| 642 | ], |
| 643 | [enable_prof_gcc="1"] |
| 644 | ) |
| 645 | if test "x$backtrace_method" = "x" -a "x$enable_prof_gcc" = "x1" \ |
| 646 | -a "x$GCC" = "xyes" ; then |
| 647 | backtrace_method="gcc intrinsics" |
| 648 | AC_DEFINE([JEMALLOC_PROF_GCC], [ ]) |
| 649 | else |
| 650 | enable_prof_gcc="0" |
| 651 | fi |
| 652 | |
| 653 | if test "x$backtrace_method" = "x" ; then |
| 654 | backtrace_method="none (disabling profiling)" |
| 655 | enable_prof="0" |
| 656 | fi |
| 657 | AC_MSG_CHECKING([configured backtracing method]) |
| 658 | AC_MSG_RESULT([$backtrace_method]) |
Jason Evans | 2dbecf1 | 2010-09-05 10:35:13 -0700 | [diff] [blame] | 659 | if test "x$enable_prof" = "x1" ; then |
Jason Evans | 2dbecf1 | 2010-09-05 10:35:13 -0700 | [diff] [blame] | 660 | AC_DEFINE([JEMALLOC_PROF], [ ]) |
Jason Evans | 2dbecf1 | 2010-09-05 10:35:13 -0700 | [diff] [blame] | 661 | fi |
| 662 | AC_SUBST([enable_prof]) |
Jason Evans | 2dbecf1 | 2010-09-05 10:35:13 -0700 | [diff] [blame] | 663 | |
Jason Evans | 84cbbcb | 2009-12-29 00:09:15 -0800 | [diff] [blame] | 664 | dnl Enable thread-specific caching by default. |
| 665 | AC_ARG_ENABLE([tcache], |
| 666 | [AS_HELP_STRING([--disable-tcache], [Disable per thread caches])], |
| 667 | [if test "x$enable_tcache" = "xno" ; then |
| 668 | enable_tcache="0" |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 669 | else |
Jason Evans | 84cbbcb | 2009-12-29 00:09:15 -0800 | [diff] [blame] | 670 | enable_tcache="1" |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 671 | fi |
| 672 | ], |
Jason Evans | 84cbbcb | 2009-12-29 00:09:15 -0800 | [diff] [blame] | 673 | [enable_tcache="1"] |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 674 | ) |
Jason Evans | 2dbecf1 | 2010-09-05 10:35:13 -0700 | [diff] [blame] | 675 | if test "x$enable_tcache" = "x1" ; then |
| 676 | AC_DEFINE([JEMALLOC_TCACHE], [ ]) |
| 677 | fi |
| 678 | AC_SUBST([enable_tcache]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 679 | |
Jason Evans | 59ae276 | 2012-04-16 17:52:27 -0700 | [diff] [blame] | 680 | dnl Enable VM deallocation via munmap() by default. |
| 681 | AC_ARG_ENABLE([munmap], |
| 682 | [AS_HELP_STRING([--disable-munmap], [Disable VM deallocation via munmap(2)])], |
| 683 | [if test "x$enable_munmap" = "xno" ; then |
| 684 | enable_munmap="0" |
| 685 | else |
| 686 | enable_munmap="1" |
| 687 | fi |
| 688 | ], |
| 689 | [enable_munmap="${default_munmap}"] |
| 690 | ) |
| 691 | if test "x$enable_munmap" = "x1" ; then |
| 692 | AC_DEFINE([JEMALLOC_MUNMAP], [ ]) |
| 693 | fi |
| 694 | AC_SUBST([enable_munmap]) |
| 695 | |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 696 | dnl Do not enable allocation from DSS by default. |
| 697 | AC_ARG_ENABLE([dss], |
| 698 | [AS_HELP_STRING([--enable-dss], [Enable allocation from DSS])], |
| 699 | [if test "x$enable_dss" = "xno" ; then |
| 700 | enable_dss="0" |
| 701 | else |
| 702 | enable_dss="1" |
| 703 | fi |
| 704 | ], |
| 705 | [enable_dss="0"] |
| 706 | ) |
Mike Hommey | 83c324a | 2012-04-12 10:13:03 +0200 | [diff] [blame] | 707 | dnl Check whether the BSD/SUSv1 sbrk() exists. If not, disable DSS support. |
| 708 | AC_CHECK_FUNC([sbrk], [have_sbrk="1"], [have_sbrk="0"]) |
| 709 | if test "x$have_sbrk" = "x1" ; then |
| 710 | AC_DEFINE([JEMALLOC_HAVE_SBRK], [ ]) |
| 711 | else |
| 712 | enable_dss="0" |
| 713 | fi |
| 714 | |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 715 | if test "x$enable_dss" = "x1" ; then |
| 716 | AC_DEFINE([JEMALLOC_DSS], [ ]) |
| 717 | fi |
| 718 | AC_SUBST([enable_dss]) |
| 719 | |
Jason Evans | 777c191 | 2012-02-28 20:49:22 -0800 | [diff] [blame] | 720 | dnl Support the junk/zero filling option by default. |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 721 | AC_ARG_ENABLE([fill], |
Jason Evans | 122449b | 2012-04-06 00:35:09 -0700 | [diff] [blame] | 722 | [AS_HELP_STRING([--disable-fill], |
| 723 | [Disable support for junk/zero filling, quarantine, and redzones])], |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 724 | [if test "x$enable_fill" = "xno" ; then |
| 725 | enable_fill="0" |
| 726 | else |
| 727 | enable_fill="1" |
| 728 | fi |
| 729 | ], |
Jason Evans | 777c191 | 2012-02-28 20:49:22 -0800 | [diff] [blame] | 730 | [enable_fill="1"] |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 731 | ) |
| 732 | if test "x$enable_fill" = "x1" ; then |
| 733 | AC_DEFINE([JEMALLOC_FILL], [ ]) |
| 734 | fi |
| 735 | AC_SUBST([enable_fill]) |
| 736 | |
Jason Evans | b147611 | 2012-04-05 13:36:17 -0700 | [diff] [blame] | 737 | dnl Disable utrace(2)-based tracing by default. |
| 738 | AC_ARG_ENABLE([utrace], |
| 739 | [AS_HELP_STRING([--enable-utrace], [Enable utrace(2)-based tracing])], |
| 740 | [if test "x$enable_utrace" = "xno" ; then |
| 741 | enable_utrace="0" |
| 742 | else |
| 743 | enable_utrace="1" |
| 744 | fi |
| 745 | ], |
| 746 | [enable_utrace="0"] |
| 747 | ) |
| 748 | JE_COMPILABLE([utrace(2)], [ |
| 749 | #include <sys/types.h> |
| 750 | #include <sys/param.h> |
| 751 | #include <sys/time.h> |
| 752 | #include <sys/uio.h> |
| 753 | #include <sys/ktrace.h> |
| 754 | ], [ |
| 755 | utrace((void *)0, 0); |
| 756 | ], [je_cv_utrace]) |
| 757 | if test "x${je_cv_utrace}" = "xno" ; then |
| 758 | enable_utrace="0" |
| 759 | fi |
| 760 | if test "x$enable_utrace" = "x1" ; then |
| 761 | AC_DEFINE([JEMALLOC_UTRACE], [ ]) |
| 762 | fi |
| 763 | AC_SUBST([enable_utrace]) |
| 764 | |
Jason Evans | 122449b | 2012-04-06 00:35:09 -0700 | [diff] [blame] | 765 | dnl Support Valgrind by default. |
| 766 | AC_ARG_ENABLE([valgrind], |
| 767 | [AS_HELP_STRING([--disable-valgrind], [Disable support for Valgrind])], |
| 768 | [if test "x$enable_valgrind" = "xno" ; then |
| 769 | enable_valgrind="0" |
| 770 | else |
| 771 | enable_valgrind="1" |
| 772 | fi |
| 773 | ], |
| 774 | [enable_valgrind="1"] |
| 775 | ) |
| 776 | if test "x$enable_valgrind" = "x1" ; then |
| 777 | JE_COMPILABLE([valgrind], [ |
| 778 | #include <valgrind/valgrind.h> |
| 779 | #include <valgrind/memcheck.h> |
| 780 | |
| 781 | #if defined(__VALGRIND_MAJOR__) && defined(__VALGRIND_MINOR__) \ |
| 782 | && (__VALGRIND_MAJOR__ > 3 || (__VALGRIND_MAJOR__ == 3 && \ |
| 783 | __VALGRIND_MINOR__ >= 6)) |
| 784 | #else |
| 785 | # error "Incompatible Valgrind version" |
| 786 | #endif |
| 787 | ], [], [je_cv_valgrind]) |
| 788 | if test "x${je_cv_valgrind}" = "xno" ; then |
| 789 | enable_valgrind="0" |
| 790 | fi |
| 791 | if test "x$enable_valgrind" = "x1" ; then |
| 792 | AC_DEFINE([JEMALLOC_VALGRIND], [ ]) |
| 793 | fi |
| 794 | fi |
| 795 | AC_SUBST([enable_valgrind]) |
| 796 | |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 797 | dnl Do not support the xmalloc option by default. |
| 798 | AC_ARG_ENABLE([xmalloc], |
| 799 | [AS_HELP_STRING([--enable-xmalloc], [Support xmalloc option])], |
| 800 | [if test "x$enable_xmalloc" = "xno" ; then |
| 801 | enable_xmalloc="0" |
| 802 | else |
| 803 | enable_xmalloc="1" |
| 804 | fi |
| 805 | ], |
| 806 | [enable_xmalloc="0"] |
| 807 | ) |
| 808 | if test "x$enable_xmalloc" = "x1" ; then |
| 809 | AC_DEFINE([JEMALLOC_XMALLOC], [ ]) |
| 810 | fi |
| 811 | AC_SUBST([enable_xmalloc]) |
| 812 | |
Jason Evans | 6684cac | 2012-03-05 12:15:36 -0800 | [diff] [blame] | 813 | AC_CACHE_CHECK([STATIC_PAGE_SHIFT], |
| 814 | [je_cv_static_page_shift], |
| 815 | AC_RUN_IFELSE([AC_LANG_PROGRAM( |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 816 | [[#include <stdio.h> |
| 817 | #include <unistd.h> |
| 818 | #include <strings.h> |
Jason Evans | 6684cac | 2012-03-05 12:15:36 -0800 | [diff] [blame] | 819 | ]], |
| 820 | [[ |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 821 | long result; |
| 822 | FILE *f; |
| 823 | |
| 824 | result = sysconf(_SC_PAGESIZE); |
| 825 | if (result == -1) { |
| 826 | return 1; |
| 827 | } |
| 828 | f = fopen("conftest.out", "w"); |
| 829 | if (f == NULL) { |
| 830 | return 1; |
| 831 | } |
| 832 | fprintf(f, "%u\n", ffs((int)result) - 1); |
Jason Evans | 3cc1f1a | 2012-04-03 22:30:05 -0700 | [diff] [blame] | 833 | fclose(f); |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 834 | |
| 835 | return 0; |
| 836 | ]])], |
Jason Evans | 6684cac | 2012-03-05 12:15:36 -0800 | [diff] [blame] | 837 | [je_cv_static_page_shift=`cat conftest.out`], |
| 838 | [je_cv_static_page_shift=undefined])) |
| 839 | |
| 840 | if test "x$je_cv_static_page_shift" != "xundefined"; then |
| 841 | AC_DEFINE_UNQUOTED([STATIC_PAGE_SHIFT], [$je_cv_static_page_shift]) |
| 842 | else |
| 843 | AC_MSG_ERROR([cannot determine value for STATIC_PAGE_SHIFT]) |
| 844 | fi |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 845 | |
| 846 | dnl ============================================================================ |
| 847 | dnl jemalloc configuration. |
| 848 | dnl |
Jason Evans | a40bc7a | 2010-03-02 13:01:16 -0800 | [diff] [blame] | 849 | |
| 850 | dnl Set VERSION if source directory has an embedded git repository. |
Jason Evans | 955851f | 2011-03-31 22:38:51 -0700 | [diff] [blame] | 851 | if test -d "${srcroot}.git" ; then |
Jason Evans | 79d660d | 2010-09-17 17:38:24 -0700 | [diff] [blame] | 852 | git describe --long --abbrev=40 > ${srcroot}VERSION |
Jason Evans | a40bc7a | 2010-03-02 13:01:16 -0800 | [diff] [blame] | 853 | fi |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 854 | jemalloc_version=`cat ${srcroot}VERSION` |
Jason Evans | a40bc7a | 2010-03-02 13:01:16 -0800 | [diff] [blame] | 855 | jemalloc_version_major=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]1}'` |
| 856 | jemalloc_version_minor=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]2}'` |
| 857 | jemalloc_version_bugfix=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]3}'` |
| 858 | jemalloc_version_nrev=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]4}'` |
| 859 | jemalloc_version_gid=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]5}'` |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 860 | AC_SUBST([jemalloc_version]) |
Jason Evans | a40bc7a | 2010-03-02 13:01:16 -0800 | [diff] [blame] | 861 | AC_SUBST([jemalloc_version_major]) |
| 862 | AC_SUBST([jemalloc_version_minor]) |
| 863 | AC_SUBST([jemalloc_version_bugfix]) |
| 864 | AC_SUBST([jemalloc_version_nrev]) |
| 865 | AC_SUBST([jemalloc_version_gid]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 866 | |
| 867 | dnl ============================================================================ |
| 868 | dnl Configure pthreads. |
| 869 | |
| 870 | AC_CHECK_HEADERS([pthread.h], , [AC_MSG_ERROR([pthread.h is missing])]) |
Jason Evans | 39006f9 | 2012-03-16 16:57:02 -0700 | [diff] [blame] | 871 | dnl Some systems may embed pthreads functionality in libc; check for libpthread |
| 872 | dnl first, but try libc too before failing. |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 873 | AC_CHECK_LIB([pthread], [pthread_create], [LIBS="$LIBS -lpthread"], |
Jason Evans | 39006f9 | 2012-03-16 16:57:02 -0700 | [diff] [blame] | 874 | [AC_SEARCH_LIBS([pthread_create], , , |
| 875 | AC_MSG_ERROR([libpthread is missing]))]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 876 | |
| 877 | CPPFLAGS="$CPPFLAGS -D_REENTRANT" |
| 878 | |
Jason Evans | cd9a134 | 2012-03-21 18:33:03 -0700 | [diff] [blame] | 879 | dnl Check whether the BSD-specific _malloc_thread_cleanup() exists. If so, use |
| 880 | dnl it rather than pthreads TSD cleanup functions to support cleanup during |
| 881 | dnl thread exit, in order to avoid pthreads library recursion during |
| 882 | dnl bootstrapping. |
Jason Evans | cd9a134 | 2012-03-21 18:33:03 -0700 | [diff] [blame] | 883 | AC_CHECK_FUNC([_malloc_thread_cleanup], |
| 884 | [have__malloc_thread_cleanup="1"], |
| 885 | [have__malloc_thread_cleanup="0"] |
| 886 | ) |
| 887 | if test "x$have__malloc_thread_cleanup" = "x1" ; then |
| 888 | AC_DEFINE([JEMALLOC_MALLOC_THREAD_CLEANUP], [ ]) |
| 889 | force_tls="1" |
| 890 | fi |
| 891 | |
Jason Evans | 41b6afb | 2012-02-02 22:04:57 -0800 | [diff] [blame] | 892 | dnl Check whether the BSD-specific _pthread_mutex_init_calloc_cb() exists. If |
| 893 | dnl so, mutex initialization causes allocation, and we need to implement this |
| 894 | dnl callback function in order to prevent recursive allocation. |
| 895 | AC_CHECK_FUNC([_pthread_mutex_init_calloc_cb], |
| 896 | [have__pthread_mutex_init_calloc_cb="1"], |
| 897 | [have__pthread_mutex_init_calloc_cb="0"] |
| 898 | ) |
| 899 | if test "x$have__pthread_mutex_init_calloc_cb" = "x1" ; then |
| 900 | AC_DEFINE([JEMALLOC_MUTEX_INIT_CB]) |
| 901 | fi |
| 902 | |
Jason Evans | 0fee70d | 2012-02-13 12:36:11 -0800 | [diff] [blame] | 903 | dnl Disable lazy locking by default. |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 904 | AC_ARG_ENABLE([lazy_lock], |
Jason Evans | 0fee70d | 2012-02-13 12:36:11 -0800 | [diff] [blame] | 905 | [AS_HELP_STRING([--enable-lazy-lock], |
| 906 | [Enable lazy locking (only lock when multi-threaded)])], |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 907 | [if test "x$enable_lazy_lock" = "xno" ; then |
| 908 | enable_lazy_lock="0" |
| 909 | else |
| 910 | enable_lazy_lock="1" |
| 911 | fi |
| 912 | ], |
Jason Evans | 0fee70d | 2012-02-13 12:36:11 -0800 | [diff] [blame] | 913 | [enable_lazy_lock="0"] |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 914 | ) |
Jason Evans | fd4fcef | 2012-03-23 17:40:58 -0700 | [diff] [blame] | 915 | if test "x$enable_lazy_lock" = "x0" -a "x${force_lazy_lock}" = "x1" ; then |
| 916 | AC_MSG_RESULT([Forcing lazy-lock to avoid allocator/threading bootstrap issues]) |
| 917 | enable_lazy_lock="1" |
| 918 | fi |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 919 | if test "x$enable_lazy_lock" = "x1" ; then |
| 920 | AC_CHECK_HEADERS([dlfcn.h], , [AC_MSG_ERROR([dlfcn.h is missing])]) |
Jason Evans | 650285d | 2012-03-19 10:25:27 -0700 | [diff] [blame] | 921 | AC_CHECK_FUNC([dlsym], [], |
| 922 | [AC_CHECK_LIB([dl], [dlsym], [LIBS="$LIBS -ldl"], |
| 923 | [AC_MSG_ERROR([libdl is missing])]) |
| 924 | ]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 925 | AC_DEFINE([JEMALLOC_LAZY_LOCK], [ ]) |
| 926 | fi |
| 927 | AC_SUBST([enable_lazy_lock]) |
| 928 | |
Jason Evans | 78d815c | 2010-01-17 14:06:20 -0800 | [diff] [blame] | 929 | AC_ARG_ENABLE([tls], |
| 930 | [AS_HELP_STRING([--disable-tls], [Disable thread-local storage (__thread keyword)])], |
| 931 | if test "x$enable_tls" = "xno" ; then |
| 932 | enable_tls="0" |
| 933 | else |
| 934 | enable_tls="1" |
| 935 | fi |
| 936 | , |
| 937 | enable_tls="1" |
| 938 | ) |
Jason Evans | cd9a134 | 2012-03-21 18:33:03 -0700 | [diff] [blame] | 939 | if test "x${enable_tls}" = "x0" -a "x${force_tls}" = "x1" ; then |
| 940 | AC_MSG_RESULT([Forcing TLS to avoid allocator/threading bootstrap issues]) |
| 941 | enable_tls="1" |
| 942 | fi |
Jason Evans | b80581d | 2012-03-23 16:17:43 -0700 | [diff] [blame] | 943 | if test "x${enable_tls}" = "x1" -a "x${force_tls}" = "x0" ; then |
| 944 | AC_MSG_RESULT([Forcing no TLS to avoid allocator/threading bootstrap issues]) |
| 945 | enable_tls="0" |
| 946 | fi |
Jason Evans | 78d815c | 2010-01-17 14:06:20 -0800 | [diff] [blame] | 947 | if test "x${enable_tls}" = "x1" ; then |
| 948 | AC_MSG_CHECKING([for TLS]) |
Jason Evans | 6684cac | 2012-03-05 12:15:36 -0800 | [diff] [blame] | 949 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM( |
Jason Evans | 78d815c | 2010-01-17 14:06:20 -0800 | [diff] [blame] | 950 | [[ |
| 951 | __thread int x; |
| 952 | ]], [[ |
| 953 | x = 42; |
| 954 | |
| 955 | return 0; |
| 956 | ]])], |
| 957 | AC_MSG_RESULT([yes]), |
| 958 | AC_MSG_RESULT([no]) |
| 959 | enable_tls="0") |
| 960 | fi |
Jason Evans | b267d0f | 2010-08-13 15:42:29 -0700 | [diff] [blame] | 961 | AC_SUBST([enable_tls]) |
Jason Evans | e24c7af | 2012-03-19 10:21:17 -0700 | [diff] [blame] | 962 | if test "x${enable_tls}" = "x1" ; then |
| 963 | AC_DEFINE_UNQUOTED([JEMALLOC_TLS], [ ]) |
Jason Evans | cd9a134 | 2012-03-21 18:33:03 -0700 | [diff] [blame] | 964 | elif test "x${force_tls}" = "x1" ; then |
| 965 | AC_MSG_ERROR([Failed to configure TLS, which is mandatory for correct function]) |
Jason Evans | 78d815c | 2010-01-17 14:06:20 -0800 | [diff] [blame] | 966 | fi |
| 967 | |
Jason Evans | 2dbecf1 | 2010-09-05 10:35:13 -0700 | [diff] [blame] | 968 | dnl ============================================================================ |
Jason Evans | 84c8eef | 2011-03-16 10:30:13 -0700 | [diff] [blame] | 969 | dnl Check for ffsl(3), and fail if not found. This function exists on all |
| 970 | dnl platforms that jemalloc currently has a chance of functioning on without |
| 971 | dnl modification. |
Jason Evans | 4c2faa8 | 2012-03-13 11:09:23 -0700 | [diff] [blame] | 972 | JE_COMPILABLE([a program using ffsl], [ |
Jason Evans | 382132e | 2012-04-04 15:25:43 -0700 | [diff] [blame] | 973 | #include <strings.h> |
Jason Evans | 4c2faa8 | 2012-03-13 11:09:23 -0700 | [diff] [blame] | 974 | #include <string.h> |
| 975 | ], [ |
| 976 | { |
| 977 | int rv = ffsl(0x08); |
| 978 | } |
| 979 | ], [je_cv_function_ffsl]) |
Jason Evans | 6684cac | 2012-03-05 12:15:36 -0800 | [diff] [blame] | 980 | if test "x${je_cv_function_ffsl}" != "xyes" ; then |
| 981 | AC_MSG_ERROR([Cannot build without ffsl(3)]) |
| 982 | fi |
Jason Evans | 84c8eef | 2011-03-16 10:30:13 -0700 | [diff] [blame] | 983 | |
| 984 | dnl ============================================================================ |
Jason Evans | 763baa6 | 2011-03-18 19:10:31 -0700 | [diff] [blame] | 985 | dnl Check for atomic(3) operations as provided on Darwin. |
| 986 | |
| 987 | JE_COMPILABLE([Darwin OSAtomic*()], [ |
| 988 | #include <libkern/OSAtomic.h> |
| 989 | #include <inttypes.h> |
| 990 | ], [ |
| 991 | { |
| 992 | int32_t x32 = 0; |
| 993 | volatile int32_t *x32p = &x32; |
| 994 | OSAtomicAdd32(1, x32p); |
| 995 | } |
| 996 | { |
| 997 | int64_t x64 = 0; |
| 998 | volatile int64_t *x64p = &x64; |
| 999 | OSAtomicAdd64(1, x64p); |
| 1000 | } |
Jason Evans | 6684cac | 2012-03-05 12:15:36 -0800 | [diff] [blame] | 1001 | ], [je_cv_osatomic]) |
| 1002 | if test "x${je_cv_osatomic}" = "xyes" ; then |
Jason Evans | e24c7af | 2012-03-19 10:21:17 -0700 | [diff] [blame] | 1003 | AC_DEFINE([JEMALLOC_OSATOMIC], [ ]) |
Jason Evans | 763baa6 | 2011-03-18 19:10:31 -0700 | [diff] [blame] | 1004 | fi |
| 1005 | |
| 1006 | dnl ============================================================================ |
Mike Hommey | c1e567b | 2012-03-26 17:03:41 +0200 | [diff] [blame] | 1007 | dnl Check whether __sync_{add,sub}_and_fetch() are available despite |
| 1008 | dnl __GCC_HAVE_SYNC_COMPARE_AND_SWAP_n macros being undefined. |
| 1009 | |
| 1010 | AC_DEFUN([JE_SYNC_COMPARE_AND_SWAP_CHECK],[ |
| 1011 | AC_CACHE_CHECK([whether to force $1-bit __sync_{add,sub}_and_fetch()], |
| 1012 | [je_cv_sync_compare_and_swap_$2], |
Mike Hommey | 2cfe6d6 | 2012-03-27 15:03:07 +0200 | [diff] [blame] | 1013 | [AC_LINK_IFELSE([AC_LANG_PROGRAM([ |
| 1014 | #include <stdint.h> |
| 1015 | ], |
| 1016 | [ |
| 1017 | #ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_$2 |
| 1018 | { |
| 1019 | uint$1_t x$1 = 0; |
| 1020 | __sync_add_and_fetch(&x$1, 42); |
| 1021 | __sync_sub_and_fetch(&x$1, 1); |
| 1022 | } |
| 1023 | #else |
| 1024 | #error __GCC_HAVE_SYNC_COMPARE_AND_SWAP_$2 is defined, no need to force |
| 1025 | #endif |
| 1026 | ])], |
Mike Hommey | c1e567b | 2012-03-26 17:03:41 +0200 | [diff] [blame] | 1027 | [je_cv_sync_compare_and_swap_$2=yes], |
| 1028 | [je_cv_sync_compare_and_swap_$2=no])]) |
| 1029 | |
| 1030 | if test "x${je_cv_sync_compare_and_swap_$2}" = "xyes" ; then |
| 1031 | AC_DEFINE([JE_FORCE_SYNC_COMPARE_AND_SWAP_$2], [ ]) |
| 1032 | fi |
| 1033 | ]) |
| 1034 | |
| 1035 | if test "x${je_cv_osatomic}" != "xyes" ; then |
| 1036 | JE_SYNC_COMPARE_AND_SWAP_CHECK(32, 4) |
| 1037 | JE_SYNC_COMPARE_AND_SWAP_CHECK(64, 8) |
| 1038 | fi |
| 1039 | |
| 1040 | dnl ============================================================================ |
Jason Evans | 893a0ed | 2011-03-18 19:30:18 -0700 | [diff] [blame] | 1041 | dnl Check for spinlock(3) operations as provided on Darwin. |
| 1042 | |
| 1043 | JE_COMPILABLE([Darwin OSSpin*()], [ |
| 1044 | #include <libkern/OSAtomic.h> |
| 1045 | #include <inttypes.h> |
| 1046 | ], [ |
| 1047 | OSSpinLock lock = 0; |
| 1048 | OSSpinLockLock(&lock); |
| 1049 | OSSpinLockUnlock(&lock); |
Jason Evans | 6684cac | 2012-03-05 12:15:36 -0800 | [diff] [blame] | 1050 | ], [je_cv_osspin]) |
| 1051 | if test "x${je_cv_osspin}" = "xyes" ; then |
Jason Evans | e24c7af | 2012-03-19 10:21:17 -0700 | [diff] [blame] | 1052 | AC_DEFINE([JEMALLOC_OSSPIN], [ ]) |
Jason Evans | 893a0ed | 2011-03-18 19:30:18 -0700 | [diff] [blame] | 1053 | fi |
| 1054 | |
| 1055 | dnl ============================================================================ |
Jason Evans | 2dbecf1 | 2010-09-05 10:35:13 -0700 | [diff] [blame] | 1056 | dnl Darwin-related configuration. |
Jason Evans | 78d815c | 2010-01-17 14:06:20 -0800 | [diff] [blame] | 1057 | |
Jason Evans | 2dbecf1 | 2010-09-05 10:35:13 -0700 | [diff] [blame] | 1058 | if test "x${abi}" = "xmacho" ; then |
Jason Evans | e24c7af | 2012-03-19 10:21:17 -0700 | [diff] [blame] | 1059 | AC_DEFINE([JEMALLOC_IVSALLOC], [ ]) |
| 1060 | AC_DEFINE([JEMALLOC_ZONE], [ ]) |
Jason Evans | 6109fe0 | 2010-02-10 10:37:56 -0800 | [diff] [blame] | 1061 | |
Jason Evans | 2dbecf1 | 2010-09-05 10:35:13 -0700 | [diff] [blame] | 1062 | dnl The szone version jumped from 3 to 6 between the OS X 10.5.x and 10.6 |
| 1063 | dnl releases. malloc_zone_t and malloc_introspection_t have new fields in |
| 1064 | dnl 10.6, which is the only source-level indication of the change. |
| 1065 | AC_MSG_CHECKING([malloc zone version]) |
Mike Hommey | 154829d | 2012-03-20 18:01:38 +0100 | [diff] [blame] | 1066 | AC_DEFUN([JE_ZONE_PROGRAM], |
| 1067 | [AC_LANG_PROGRAM( |
| 1068 | [#include <malloc/malloc.h>], |
| 1069 | [static foo[[sizeof($1) $2 sizeof(void *) * $3 ? 1 : -1]]] |
| 1070 | )]) |
Jason Evans | 2dbecf1 | 2010-09-05 10:35:13 -0700 | [diff] [blame] | 1071 | |
Mike Hommey | 154829d | 2012-03-20 18:01:38 +0100 | [diff] [blame] | 1072 | AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,14)],[JEMALLOC_ZONE_VERSION=3],[ |
| 1073 | AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,15)],[JEMALLOC_ZONE_VERSION=5],[ |
| 1074 | AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,16)],[ |
| 1075 | AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_introspection_t,==,9)],[JEMALLOC_ZONE_VERSION=6],[ |
| 1076 | AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_introspection_t,==,13)],[JEMALLOC_ZONE_VERSION=7],[JEMALLOC_ZONE_VERSION=] |
| 1077 | )])],[ |
| 1078 | AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,17)],[JEMALLOC_ZONE_VERSION=8],[ |
| 1079 | AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,>,17)],[JEMALLOC_ZONE_VERSION=9],[JEMALLOC_ZONE_VERSION=] |
| 1080 | )])])])]) |
| 1081 | if test "x${JEMALLOC_ZONE_VERSION}" = "x"; then |
| 1082 | AC_MSG_RESULT([unsupported]) |
| 1083 | AC_MSG_ERROR([Unsupported malloc zone version]) |
| 1084 | fi |
| 1085 | if test "${JEMALLOC_ZONE_VERSION}" = 9; then |
| 1086 | JEMALLOC_ZONE_VERSION=8 |
| 1087 | AC_MSG_RESULT([> 8]) |
| 1088 | else |
| 1089 | AC_MSG_RESULT([$JEMALLOC_ZONE_VERSION]) |
| 1090 | fi |
| 1091 | AC_DEFINE_UNQUOTED(JEMALLOC_ZONE_VERSION, [$JEMALLOC_ZONE_VERSION]) |
Jason Evans | b27805b | 2010-02-10 18:15:53 -0800 | [diff] [blame] | 1092 | fi |
| 1093 | |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1094 | dnl ============================================================================ |
| 1095 | dnl Check for typedefs, structures, and compiler characteristics. |
| 1096 | AC_HEADER_STDBOOL |
| 1097 | |
Jason Evans | b172610 | 2012-02-28 16:50:47 -0800 | [diff] [blame] | 1098 | AC_CONFIG_COMMANDS([include/jemalloc/internal/size_classes.h], [ |
| 1099 | mkdir -p "include/jemalloc/internal" |
| 1100 | "${srcdir}/include/jemalloc/internal/size_classes.sh" > "${objroot}include/jemalloc/internal/size_classes.h" |
| 1101 | ]) |
| 1102 | |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1103 | dnl Process .in files. |
Jason Evans | b0fd501 | 2010-01-17 01:49:20 -0800 | [diff] [blame] | 1104 | AC_SUBST([cfghdrs_in]) |
| 1105 | AC_SUBST([cfghdrs_out]) |
Jason Evans | 0656ec0 | 2010-04-07 23:37:35 -0700 | [diff] [blame] | 1106 | AC_CONFIG_HEADERS([$cfghdrs_tup]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1107 | |
| 1108 | dnl ============================================================================ |
| 1109 | dnl Generate outputs. |
Antony Dovgal | 2bd3cbc | 2011-10-13 09:33:33 +0400 | [diff] [blame] | 1110 | AC_CONFIG_FILES([$cfgoutputs_tup config.stamp bin/jemalloc.sh]) |
Jason Evans | b0fd501 | 2010-01-17 01:49:20 -0800 | [diff] [blame] | 1111 | AC_SUBST([cfgoutputs_in]) |
| 1112 | AC_SUBST([cfgoutputs_out]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1113 | AC_OUTPUT |
| 1114 | |
| 1115 | dnl ============================================================================ |
| 1116 | dnl Print out the results of configuration. |
| 1117 | AC_MSG_RESULT([===============================================================================]) |
Jason Evans | f576c63 | 2011-11-01 22:27:41 -0700 | [diff] [blame] | 1118 | AC_MSG_RESULT([jemalloc version : ${jemalloc_version}]) |
| 1119 | AC_MSG_RESULT([library revision : ${rev}]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1120 | AC_MSG_RESULT([]) |
| 1121 | AC_MSG_RESULT([CC : ${CC}]) |
| 1122 | AC_MSG_RESULT([CPPFLAGS : ${CPPFLAGS}]) |
| 1123 | AC_MSG_RESULT([CFLAGS : ${CFLAGS}]) |
| 1124 | AC_MSG_RESULT([LDFLAGS : ${LDFLAGS}]) |
| 1125 | AC_MSG_RESULT([LIBS : ${LIBS}]) |
| 1126 | AC_MSG_RESULT([RPATH_EXTRA : ${RPATH_EXTRA}]) |
| 1127 | AC_MSG_RESULT([]) |
Jason Evans | aee7fd2 | 2010-11-24 22:00:02 -0800 | [diff] [blame] | 1128 | AC_MSG_RESULT([XSLTPROC : ${XSLTPROC}]) |
| 1129 | AC_MSG_RESULT([XSLROOT : ${XSLROOT}]) |
| 1130 | AC_MSG_RESULT([]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1131 | AC_MSG_RESULT([PREFIX : ${PREFIX}]) |
| 1132 | AC_MSG_RESULT([BINDIR : ${BINDIR}]) |
Jason Evans | 662a017 | 2009-07-01 19:24:31 -0700 | [diff] [blame] | 1133 | AC_MSG_RESULT([INCLUDEDIR : ${INCLUDEDIR}]) |
| 1134 | AC_MSG_RESULT([LIBDIR : ${LIBDIR}]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1135 | AC_MSG_RESULT([DATADIR : ${DATADIR}]) |
| 1136 | AC_MSG_RESULT([MANDIR : ${MANDIR}]) |
| 1137 | AC_MSG_RESULT([]) |
| 1138 | AC_MSG_RESULT([srcroot : ${srcroot}]) |
| 1139 | AC_MSG_RESULT([abs_srcroot : ${abs_srcroot}]) |
| 1140 | AC_MSG_RESULT([objroot : ${objroot}]) |
| 1141 | AC_MSG_RESULT([abs_objroot : ${abs_objroot}]) |
| 1142 | AC_MSG_RESULT([]) |
Jason Evans | 90895cf | 2009-12-29 00:09:15 -0800 | [diff] [blame] | 1143 | AC_MSG_RESULT([JEMALLOC_PREFIX : ${JEMALLOC_PREFIX}]) |
Jason Evans | 746e77a | 2011-07-30 16:40:52 -0700 | [diff] [blame] | 1144 | AC_MSG_RESULT([JEMALLOC_PRIVATE_NAMESPACE]) |
| 1145 | AC_MSG_RESULT([ : ${JEMALLOC_PRIVATE_NAMESPACE}]) |
Jason Evans | b0fd501 | 2010-01-17 01:49:20 -0800 | [diff] [blame] | 1146 | AC_MSG_RESULT([install_suffix : ${install_suffix}]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1147 | AC_MSG_RESULT([autogen : ${enable_autogen}]) |
Jason Evans | 7e77eaf | 2012-03-02 17:47:37 -0800 | [diff] [blame] | 1148 | AC_MSG_RESULT([experimental : ${enable_experimental}]) |
Jason Evans | 355b438 | 2010-09-20 19:20:48 -0700 | [diff] [blame] | 1149 | AC_MSG_RESULT([cc-silence : ${enable_cc_silence}]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1150 | AC_MSG_RESULT([debug : ${enable_debug}]) |
| 1151 | AC_MSG_RESULT([stats : ${enable_stats}]) |
Jason Evans | 6109fe0 | 2010-02-10 10:37:56 -0800 | [diff] [blame] | 1152 | AC_MSG_RESULT([prof : ${enable_prof}]) |
| 1153 | AC_MSG_RESULT([prof-libunwind : ${enable_prof_libunwind}]) |
Jason Evans | 77f350b | 2011-03-15 22:23:12 -0700 | [diff] [blame] | 1154 | AC_MSG_RESULT([prof-libgcc : ${enable_prof_libgcc}]) |
| 1155 | AC_MSG_RESULT([prof-gcc : ${enable_prof_gcc}]) |
Jason Evans | 84cbbcb | 2009-12-29 00:09:15 -0800 | [diff] [blame] | 1156 | AC_MSG_RESULT([tcache : ${enable_tcache}]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1157 | AC_MSG_RESULT([fill : ${enable_fill}]) |
Jason Evans | b147611 | 2012-04-05 13:36:17 -0700 | [diff] [blame] | 1158 | AC_MSG_RESULT([utrace : ${enable_utrace}]) |
Jason Evans | 122449b | 2012-04-06 00:35:09 -0700 | [diff] [blame] | 1159 | AC_MSG_RESULT([valgrind : ${enable_valgrind}]) |
| 1160 | AC_MSG_RESULT([xmalloc : ${enable_xmalloc}]) |
Jason Evans | 59ae276 | 2012-04-16 17:52:27 -0700 | [diff] [blame] | 1161 | AC_MSG_RESULT([munmap : ${enable_munmap}]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1162 | AC_MSG_RESULT([dss : ${enable_dss}]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1163 | AC_MSG_RESULT([lazy_lock : ${enable_lazy_lock}]) |
Jason Evans | 2dbecf1 | 2010-09-05 10:35:13 -0700 | [diff] [blame] | 1164 | AC_MSG_RESULT([tls : ${enable_tls}]) |
Jason Evans | b7924f5 | 2009-06-23 19:01:18 -0700 | [diff] [blame] | 1165 | AC_MSG_RESULT([===============================================================================]) |