blob: 90235f7bf3f025313ff194a39e1728f15f7f985e [file] [log] [blame]
Jason Evansb7924f52009-06-23 19:01:18 -07001dnl Process this file with autoconf to produce a configure script.
2AC_INIT([Makefile.in])
3
Jason Evansf3340ca2009-06-30 16:17:05 -07004dnl ============================================================================
5dnl Custom macro definitions.
6
7dnl JE_CFLAGS_APPEND(cflag)
8AC_DEFUN([JE_CFLAGS_APPEND],
9[
10AC_MSG_CHECKING([whether compiler supports $1])
11TCFLAGS="${CFLAGS}"
12if test "x${CFLAGS}" = "x" ; then
13 CFLAGS="$1"
14else
15 CFLAGS="${CFLAGS} $1"
16fi
Jason Evans6684cac2012-03-05 12:15:36 -080017AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
Jason Evansf3340ca2009-06-30 16:17:05 -070018[[
19]], [[
20 return 0;
21]])],
22 AC_MSG_RESULT([yes]),
23 AC_MSG_RESULT([no])
24 [CFLAGS="${TCFLAGS}"]
25)
26])
27
28dnl JE_COMPILABLE(label, hcode, mcode, rvar)
Jason Evans4c2faa82012-03-13 11:09:23 -070029dnl
Jason Evansf3e139a2012-03-19 09:54:20 -070030dnl Use AC_LINK_IFELSE() rather than AC_COMPILE_IFELSE() so that linker errors
Jason Evans4c2faa82012-03-13 11:09:23 -070031dnl cause failure.
Jason Evansf3340ca2009-06-30 16:17:05 -070032AC_DEFUN([JE_COMPILABLE],
33[
Jason Evans6684cac2012-03-05 12:15:36 -080034AC_CACHE_CHECK([whether $1 is compilable],
35 [$4],
Jason Evansf3e139a2012-03-19 09:54:20 -070036 [AC_LINK_IFELSE([AC_LANG_PROGRAM([$2],
37 [$3])],
38 [$4=yes],
39 [$4=no])])
Jason Evansf3340ca2009-06-30 16:17:05 -070040])
41
42dnl ============================================================================
43
Jason Evansf576c632011-11-01 22:27:41 -070044dnl Library revision.
45rev=1
46AC_SUBST([rev])
47
Jason Evansb7924f52009-06-23 19:01:18 -070048srcroot=$srcdir
49if test "x${srcroot}" = "x." ; then
50 srcroot=""
51else
52 srcroot="${srcroot}/"
53fi
54AC_SUBST([srcroot])
55abs_srcroot="`cd \"${srcdir}\"; pwd`/"
56AC_SUBST([abs_srcroot])
57
58objroot=""
59AC_SUBST([objroot])
60abs_objroot="`pwd`/"
61AC_SUBST([abs_objroot])
62
63dnl Munge install path variables.
64if test "x$prefix" = "xNONE" ; then
65 prefix="/usr/local"
66fi
67if test "x$exec_prefix" = "xNONE" ; then
68 exec_prefix=$prefix
69fi
70PREFIX=$prefix
71AC_SUBST([PREFIX])
72BINDIR=`eval echo $bindir`
73BINDIR=`eval echo $BINDIR`
74AC_SUBST([BINDIR])
75INCLUDEDIR=`eval echo $includedir`
76INCLUDEDIR=`eval echo $INCLUDEDIR`
77AC_SUBST([INCLUDEDIR])
78LIBDIR=`eval echo $libdir`
79LIBDIR=`eval echo $LIBDIR`
80AC_SUBST([LIBDIR])
81DATADIR=`eval echo $datadir`
82DATADIR=`eval echo $DATADIR`
83AC_SUBST([DATADIR])
84MANDIR=`eval echo $mandir`
85MANDIR=`eval echo $MANDIR`
86AC_SUBST([MANDIR])
87
Jason Evansaee7fd22010-11-24 22:00:02 -080088dnl Support for building documentation.
89AC_PATH_PROG([XSLTPROC], [xsltproc], , [$PATH])
Jason Evans7091b412012-03-19 09:36:44 -070090if test -d "/usr/share/xml/docbook/stylesheet/docbook-xsl" ; then
91 DEFAULT_XSLROOT="/usr/share/xml/docbook/stylesheet/docbook-xsl"
92elif test -d "/usr/share/sgml/docbook/xsl-stylesheets" ; then
93 DEFAULT_XSLROOT="/usr/share/sgml/docbook/xsl-stylesheets"
94else
95 dnl Documentation building will fail if this default gets used.
96 DEFAULT_XSLROOT=""
97fi
Jason Evansaee7fd22010-11-24 22:00:02 -080098AC_ARG_WITH([xslroot],
Jason Evans7091b412012-03-19 09:36:44 -070099 [AS_HELP_STRING([--with-xslroot=<path>], [XSL stylesheet root path])], [
Jason Evansaee7fd22010-11-24 22:00:02 -0800100if test "x$with_xslroot" = "xno" ; then
Jason Evans7091b412012-03-19 09:36:44 -0700101 XSLROOT="${DEFAULT_XSLROOT}"
Jason Evansaee7fd22010-11-24 22:00:02 -0800102else
103 XSLROOT="${with_xslroot}"
Jason Evans7091b412012-03-19 09:36:44 -0700104fi
105],
106 XSLROOT="${DEFAULT_XSLROOT}"
Jason Evansaee7fd22010-11-24 22:00:02 -0800107)
108AC_SUBST([XSLROOT])
109
Jason Evansf3340ca2009-06-30 16:17:05 -0700110dnl If CFLAGS isn't defined, set CFLAGS to something reasonable. Otherwise,
111dnl just prevent autoconf from molesting CFLAGS.
Jason Evansb7924f52009-06-23 19:01:18 -0700112CFLAGS=$CFLAGS
113AC_PROG_CC
114if test "x$CFLAGS" = "x" ; then
115 no_CFLAGS="yes"
Jason Evanscfeccd32010-03-03 15:48:20 -0800116 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 Evansb7924f52009-06-23 19:01:18 -0700122fi
123dnl Append EXTRA_CFLAGS to CFLAGS, if defined.
124if test "x$EXTRA_CFLAGS" != "x" ; then
Jason Evansf3340ca2009-06-30 16:17:05 -0700125 JE_CFLAGS_APPEND([$EXTRA_CFLAGS])
Jason Evansb7924f52009-06-23 19:01:18 -0700126fi
127AC_PROG_CPP
128
Jason Evansb7924f52009-06-23 19:01:18 -0700129AC_CHECK_SIZEOF([void *])
130if test "x${ac_cv_sizeof_void_p}" = "x8" ; then
Jason Evans94ad2b52009-12-29 00:09:15 -0800131 LG_SIZEOF_PTR=3
Jason Evansb7924f52009-06-23 19:01:18 -0700132elif test "x${ac_cv_sizeof_void_p}" = "x4" ; then
Jason Evans94ad2b52009-12-29 00:09:15 -0800133 LG_SIZEOF_PTR=2
Jason Evansb7924f52009-06-23 19:01:18 -0700134else
135 AC_MSG_ERROR([Unsupported pointer size: ${ac_cv_sizeof_void_p}])
136fi
Jason Evans94ad2b52009-12-29 00:09:15 -0800137AC_DEFINE_UNQUOTED([LG_SIZEOF_PTR], [$LG_SIZEOF_PTR])
138
139AC_CHECK_SIZEOF([int])
140if test "x${ac_cv_sizeof_int}" = "x8" ; then
141 LG_SIZEOF_INT=3
142elif test "x${ac_cv_sizeof_int}" = "x4" ; then
143 LG_SIZEOF_INT=2
144else
145 AC_MSG_ERROR([Unsupported int size: ${ac_cv_sizeof_int}])
146fi
147AC_DEFINE_UNQUOTED([LG_SIZEOF_INT], [$LG_SIZEOF_INT])
Jason Evansb7924f52009-06-23 19:01:18 -0700148
Jason Evans84c8eef2011-03-16 10:30:13 -0700149AC_CHECK_SIZEOF([long])
150if test "x${ac_cv_sizeof_long}" = "x8" ; then
151 LG_SIZEOF_LONG=3
152elif test "x${ac_cv_sizeof_long}" = "x4" ; then
153 LG_SIZEOF_LONG=2
154else
155 AC_MSG_ERROR([Unsupported long size: ${ac_cv_sizeof_long}])
156fi
157AC_DEFINE_UNQUOTED([LG_SIZEOF_LONG], [$LG_SIZEOF_LONG])
158
Jason Evansd81e4bd2012-03-06 14:57:45 -0800159AC_CHECK_SIZEOF([intmax_t])
160if test "x${ac_cv_sizeof_intmax_t}" = "x16" ; then
161 LG_SIZEOF_INTMAX_T=4
162elif test "x${ac_cv_sizeof_intmax_t}" = "x8" ; then
163 LG_SIZEOF_INTMAX_T=3
164elif test "x${ac_cv_sizeof_intmax_t}" = "x4" ; then
165 LG_SIZEOF_INTMAX_T=2
166else
167 AC_MSG_ERROR([Unsupported intmax_t size: ${ac_cv_sizeof_long}])
168fi
169AC_DEFINE_UNQUOTED([LG_SIZEOF_INTMAX_T], [$LG_SIZEOF_INTMAX_T])
170
Jason Evansb7924f52009-06-23 19:01:18 -0700171AC_CANONICAL_HOST
172dnl CPU-specific settings.
173CPU_SPINWAIT=""
174case "${host_cpu}" in
175 i[[345]]86)
176 ;;
177 i686)
Jason Evansf3340ca2009-06-30 16:17:05 -0700178 JE_COMPILABLE([__asm__], [], [[__asm__ volatile("pause"); return 0;]],
Jason Evans6684cac2012-03-05 12:15:36 -0800179 [je_cv_asm])
180 if test "x${je_cv_asm}" = "xyes" ; then
Jason Evansf3340ca2009-06-30 16:17:05 -0700181 CPU_SPINWAIT='__asm__ volatile("pause")'
182 fi
Jason Evansb7924f52009-06-23 19:01:18 -0700183 ;;
184 x86_64)
Jason Evansf3340ca2009-06-30 16:17:05 -0700185 JE_COMPILABLE([__asm__ syntax], [],
Jason Evans6684cac2012-03-05 12:15:36 -0800186 [[__asm__ volatile("pause"); return 0;]], [je_cv_asm])
187 if test "x${je_cv_asm}" = "xyes" ; then
Jason Evansf3340ca2009-06-30 16:17:05 -0700188 CPU_SPINWAIT='__asm__ volatile("pause")'
189 fi
Jason Evansb7924f52009-06-23 19:01:18 -0700190 ;;
191 *)
192 ;;
193esac
194AC_DEFINE_UNQUOTED([CPU_SPINWAIT], [$CPU_SPINWAIT])
195
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400196LD_PRELOAD_VAR="LD_PRELOAD"
Jason Evansf576c632011-11-01 22:27:41 -0700197so="so"
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400198
Jason Evans7372b152012-02-10 20:22:09 -0800199dnl Heap profiling uses the log(3) function.
200LIBS="$LIBS -lm"
201
Jason Evansb7924f52009-06-23 19:01:18 -0700202dnl Platform-specific settings. abi and RPATH can probably be determined
203dnl programmatically, but doing so is error-prone, which makes it generally
204dnl not worth the trouble.
205dnl
206dnl Define cpp macros in CPPFLAGS, rather than doing AC_DEFINE(macro), since the
207dnl definitions need to be seen before any headers are included, which is a pain
208dnl to make happen otherwise.
Jason Evans59ae2762012-04-16 17:52:27 -0700209default_munmap="1"
Jason Evansb7924f52009-06-23 19:01:18 -0700210case "${host}" in
211 *-*-darwin*)
Jason Evans9022bf92012-03-23 16:14:08 -0700212 CFLAGS="$CFLAGS -fno-common"
Jason Evansb7924f52009-06-23 19:01:18 -0700213 abi="macho"
Jason Evanse24c7af2012-03-19 10:21:17 -0700214 AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ])
Jason Evansb7924f52009-06-23 19:01:18 -0700215 RPATH=""
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400216 LD_PRELOAD_VAR="DYLD_INSERT_LIBRARIES"
Jason Evansf576c632011-11-01 22:27:41 -0700217 so="dylib"
Jason Evansb80581d2012-03-23 16:17:43 -0700218 force_tls="0"
Jason Evansb7924f52009-06-23 19:01:18 -0700219 ;;
220 *-*-freebsd*)
221 CFLAGS="$CFLAGS"
222 abi="elf"
Jason Evanse24c7af2012-03-19 10:21:17 -0700223 AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ])
Jason Evansb7924f52009-06-23 19:01:18 -0700224 RPATH="-Wl,-rpath,"
Jason Evansfd4fcef2012-03-23 17:40:58 -0700225 force_lazy_lock="1"
Jason Evansb7924f52009-06-23 19:01:18 -0700226 ;;
227 *-*-linux*)
228 CFLAGS="$CFLAGS"
229 CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
230 abi="elf"
Jason Evanse24c7af2012-03-19 10:21:17 -0700231 AC_DEFINE([JEMALLOC_PURGE_MADVISE_DONTNEED], [ ])
Jason Evans02b23122012-04-05 11:06:23 -0700232 AC_DEFINE([JEMALLOC_THREADED_INIT], [ ])
Jason Evansb7924f52009-06-23 19:01:18 -0700233 RPATH="-Wl,-rpath,"
Jason Evans59ae2762012-04-16 17:52:27 -0700234 default_munmap="0"
Jason Evansb7924f52009-06-23 19:01:18 -0700235 ;;
236 *-*-netbsd*)
237 AC_MSG_CHECKING([ABI])
238 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
239[[#ifdef __ELF__
240/* ELF */
241#else
242#error aout
243#endif
244]])],
245 [CFLAGS="$CFLAGS"; abi="elf"],
246 [abi="aout"])
247 AC_MSG_RESULT([$abi])
Jason Evanse24c7af2012-03-19 10:21:17 -0700248 AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ])
Jason Evansb7924f52009-06-23 19:01:18 -0700249 RPATH="-Wl,-rpath,"
250 ;;
251 *-*-solaris2*)
252 CFLAGS="$CFLAGS"
253 abi="elf"
254 RPATH="-Wl,-R,"
255 dnl Solaris needs this for sigwait().
256 CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
257 LIBS="$LIBS -lposix4 -lsocket -lnsl"
258 ;;
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400259 *-ibm-aix*)
260 if "$LG_SIZEOF_PTR" = "8"; then
261 dnl 64bit AIX
262 LD_PRELOAD_VAR="LDR_PRELOAD64"
263 else
264 dnl 32bit AIX
265 LD_PRELOAD_VAR="LDR_PRELOAD"
266 fi
267 abi="xcoff"
268 RPATH="-Wl,-rpath,"
269 ;;
Jason Evansb7924f52009-06-23 19:01:18 -0700270 *)
271 AC_MSG_RESULT([Unsupported operating system: ${host}])
272 abi="elf"
273 RPATH="-Wl,-rpath,"
274 ;;
275esac
276AC_SUBST([abi])
277AC_SUBST([RPATH])
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400278AC_SUBST([LD_PRELOAD_VAR])
Jason Evansf576c632011-11-01 22:27:41 -0700279AC_SUBST([so])
Jason Evansb7924f52009-06-23 19:01:18 -0700280
Jason Evansfa5d2452011-03-15 10:25:59 -0700281JE_COMPILABLE([__attribute__ syntax],
282 [static __attribute__((unused)) void foo(void){}],
283 [],
Jason Evans6684cac2012-03-05 12:15:36 -0800284 [je_cv_attribute])
285if test "x${je_cv_attribute}" = "xyes" ; then
Jason Evansfa5d2452011-03-15 10:25:59 -0700286 AC_DEFINE([JEMALLOC_HAVE_ATTR], [ ])
287 if test "x${GCC}" = "xyes" -a "x${abi}" = "xelf"; then
288 JE_CFLAGS_APPEND([-fvisibility=hidden])
289 fi
290fi
Jason Evans3cc1f1a2012-04-03 22:30:05 -0700291dnl Check for tls_model attribute support (clang 3.0 still lacks support).
292SAVED_CFLAGS="${CFLAGS}"
293JE_CFLAGS_APPEND([-Werror])
294JE_COMPILABLE([tls_model attribute], [],
295 [static __thread int
296 __attribute__((tls_model("initial-exec"))) foo;
297 foo = 0;],
298 [je_cv_tls_model])
299CFLAGS="${SAVED_CFLAGS}"
300if test "x${je_cv_tls_model}" = "xyes" ; then
301 AC_DEFINE([JEMALLOC_TLS_MODEL],
302 [__attribute__((tls_model("initial-exec")))])
303else
304 AC_DEFINE([JEMALLOC_TLS_MODEL], [ ])
305fi
Jason Evansfa5d2452011-03-15 10:25:59 -0700306
Jason Evanscfdc8cf2010-11-30 16:50:58 -0800307JE_COMPILABLE([mremap(...MREMAP_FIXED...)], [
308#define _GNU_SOURCE
309#include <sys/mman.h>
310], [
311void *p = mremap((void *)0, 0, 0, MREMAP_MAYMOVE|MREMAP_FIXED, (void *)0);
Jason Evans6684cac2012-03-05 12:15:36 -0800312], [je_cv_mremap_fixed])
313if test "x${je_cv_mremap_fixed}" = "xyes" ; then
Jason Evanse24c7af2012-03-19 10:21:17 -0700314 AC_DEFINE([JEMALLOC_MREMAP_FIXED], [ ])
Jason Evanscfdc8cf2010-11-30 16:50:58 -0800315fi
316
Jason Evansb7924f52009-06-23 19:01:18 -0700317dnl Support optional additions to rpath.
318AC_ARG_WITH([rpath],
Jason Evans90895cf2009-12-29 00:09:15 -0800319 [AS_HELP_STRING([--with-rpath=<rpath>], [Colon-separated rpath (ELF systems only)])],
Jason Evansb7924f52009-06-23 19:01:18 -0700320if test "x$with_rpath" = "xno" ; then
321 RPATH_EXTRA=
322else
323 RPATH_EXTRA="`echo $with_rpath | tr \":\" \" \"`"
324fi,
325 RPATH_EXTRA=
326)
327AC_SUBST([RPATH_EXTRA])
328
329dnl Disable rules that do automatic regeneration of configure output by default.
330AC_ARG_ENABLE([autogen],
Jason Evans78d815c2010-01-17 14:06:20 -0800331 [AS_HELP_STRING([--enable-autogen], [Automatically regenerate configure output])],
Jason Evansb7924f52009-06-23 19:01:18 -0700332if test "x$enable_autogen" = "xno" ; then
333 enable_autogen="0"
334else
335 enable_autogen="1"
336fi
337,
338enable_autogen="0"
339)
340AC_SUBST([enable_autogen])
341
342AC_PROG_INSTALL
343AC_PROG_RANLIB
344AC_PATH_PROG([AR], [ar], , [$PATH])
345AC_PATH_PROG([LD], [ld], , [$PATH])
346AC_PATH_PROG([AUTOCONF], [autoconf], , [$PATH])
347
Jason Evans0a0bbf62012-03-13 12:55:21 -0700348public_syms="malloc_conf malloc_message malloc calloc posix_memalign aligned_alloc realloc free malloc_usable_size malloc_stats_print mallctl mallctlnametomib mallctlbymib"
Jason Evans7e77eaf2012-03-02 17:47:37 -0800349
350dnl Check for allocator-related functions that should be wrapped.
351AC_CHECK_FUNC([memalign],
Jason Evanse24c7af2012-03-19 10:21:17 -0700352 [AC_DEFINE([JEMALLOC_OVERRIDE_MEMALIGN], [ ])
Jason Evans7e77eaf2012-03-02 17:47:37 -0800353 public_syms="${public_syms} memalign"])
354AC_CHECK_FUNC([valloc],
Jason Evanse24c7af2012-03-19 10:21:17 -0700355 [AC_DEFINE([JEMALLOC_OVERRIDE_VALLOC], [ ])
Jason Evans7e77eaf2012-03-02 17:47:37 -0800356 public_syms="${public_syms} valloc"])
357
358dnl Support the experimental API by default.
359AC_ARG_ENABLE([experimental],
360 [AS_HELP_STRING([--disable-experimental],
361 [Disable support for the experimental API])],
362[if test "x$enable_experimental" = "xno" ; then
363 enable_experimental="0"
364else
365 enable_experimental="1"
366fi
367],
368[enable_experimental="1"]
369)
370if test "x$enable_experimental" = "x1" ; then
371 AC_DEFINE([JEMALLOC_EXPERIMENTAL], [ ])
372 public_syms="${public_syms} allocm dallocm nallocm rallocm sallocm"
373fi
374AC_SUBST([enable_experimental])
375
Jason Evans0a5489e2012-03-01 17:19:20 -0800376dnl Perform no name mangling by default.
377AC_ARG_WITH([mangling],
378 [AS_HELP_STRING([--with-mangling=<map>], [Mangle symbols in <map>])],
379 [mangling_map="$with_mangling"], [mangling_map=""])
380for nm in `echo ${mangling_map} |tr ',' ' '` ; do
Jason Evans08fc3b22012-03-12 15:07:53 -0700381 k="`echo ${nm} |tr ':' ' ' |awk '{print $1}'`"
382 n="je_${k}"
Jason Evans0a5489e2012-03-01 17:19:20 -0800383 m=`echo ${nm} |tr ':' ' ' |awk '{print $2}'`
384 AC_DEFINE_UNQUOTED([${n}], [${m}])
Jason Evans08fc3b22012-03-12 15:07:53 -0700385 dnl Remove key from public_syms so that it isn't redefined later.
386 public_syms=`for sym in ${public_syms}; do echo "${sym}"; done |grep -v "^${k}\$" |tr '\n' ' '`
Jason Evans0a5489e2012-03-01 17:19:20 -0800387done
388
Jason Evans90895cf2009-12-29 00:09:15 -0800389dnl Do not prefix public APIs by default.
390AC_ARG_WITH([jemalloc_prefix],
391 [AS_HELP_STRING([--with-jemalloc-prefix=<prefix>], [Prefix to prepend to all public APIs])],
Jason Evansb0fd5012010-01-17 01:49:20 -0800392 [JEMALLOC_PREFIX="$with_jemalloc_prefix"],
Jason Evans2dbecf12010-09-05 10:35:13 -0700393 [if test "x$abi" != "xmacho" ; then
394 JEMALLOC_PREFIX=""
395else
396 JEMALLOC_PREFIX="je_"
397fi]
Jason Evans90895cf2009-12-29 00:09:15 -0800398)
399if test "x$JEMALLOC_PREFIX" != "x" ; then
Jason Evanse7339702010-10-23 18:37:06 -0700400 JEMALLOC_CPREFIX=`echo ${JEMALLOC_PREFIX} | tr "a-z" "A-Z"`
401 AC_DEFINE_UNQUOTED([JEMALLOC_PREFIX], ["$JEMALLOC_PREFIX"])
402 AC_DEFINE_UNQUOTED([JEMALLOC_CPREFIX], ["$JEMALLOC_CPREFIX"])
Jason Evans90895cf2009-12-29 00:09:15 -0800403fi
Jason Evans0a5489e2012-03-01 17:19:20 -0800404dnl Generate macros to rename public symbols. All public symbols are prefixed
405dnl with je_ in the source code, so these macro definitions are needed even if
406dnl --with-jemalloc-prefix wasn't specified.
Jason Evans7e77eaf2012-03-02 17:47:37 -0800407for stem in ${public_syms}; do
Jason Evans0a5489e2012-03-01 17:19:20 -0800408 n="je_${stem}"
409 m="${JEMALLOC_PREFIX}${stem}"
410 AC_DEFINE_UNQUOTED([${n}], [${m}])
411done
Jason Evans90895cf2009-12-29 00:09:15 -0800412
Jason Evans746e77a2011-07-30 16:40:52 -0700413dnl Do not mangle library-private APIs by default.
414AC_ARG_WITH([private_namespace],
415 [AS_HELP_STRING([--with-private-namespace=<prefix>], [Prefix to prepend to all library-private APIs])],
416 [JEMALLOC_PRIVATE_NAMESPACE="$with_private_namespace"],
417 [JEMALLOC_PRIVATE_NAMESPACE=""]
418)
419AC_DEFINE_UNQUOTED([JEMALLOC_PRIVATE_NAMESPACE], ["$JEMALLOC_PRIVATE_NAMESPACE"])
420if test "x$JEMALLOC_PRIVATE_NAMESPACE" != "x" ; then
421 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])
422else
423 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])
424fi
425
Jason Evansb0fd5012010-01-17 01:49:20 -0800426dnl Do not add suffix to installed files by default.
427AC_ARG_WITH([install_suffix],
428 [AS_HELP_STRING([--with-install-suffix=<suffix>], [Suffix to append to all installed files])],
429 [INSTALL_SUFFIX="$with_install_suffix"],
430 [INSTALL_SUFFIX=]
431)
432install_suffix="$INSTALL_SUFFIX"
433AC_SUBST([install_suffix])
434
Jason Evansaee7fd22010-11-24 22:00:02 -0800435cfgoutputs_in="${srcroot}Makefile.in"
436cfgoutputs_in="${cfgoutputs_in} ${srcroot}doc/html.xsl.in"
437cfgoutputs_in="${cfgoutputs_in} ${srcroot}doc/manpages.xsl.in"
438cfgoutputs_in="${cfgoutputs_in} ${srcroot}doc/jemalloc.xml.in"
Jason Evans0656ec02010-04-07 23:37:35 -0700439cfgoutputs_in="${cfgoutputs_in} ${srcroot}include/jemalloc/jemalloc.h.in"
440cfgoutputs_in="${cfgoutputs_in} ${srcroot}include/jemalloc/internal/jemalloc_internal.h.in"
Jason Evans9f3b0a72010-10-07 09:53:26 -0700441cfgoutputs_in="${cfgoutputs_in} ${srcroot}test/jemalloc_test.h.in"
Jason Evansb0fd5012010-01-17 01:49:20 -0800442
Jason Evansaee7fd22010-11-24 22:00:02 -0800443cfgoutputs_out="Makefile"
444cfgoutputs_out="${cfgoutputs_out} doc/html.xsl"
445cfgoutputs_out="${cfgoutputs_out} doc/manpages.xsl"
446cfgoutputs_out="${cfgoutputs_out} doc/jemalloc${install_suffix}.xml"
Jason Evans376b1522010-02-11 14:45:59 -0800447cfgoutputs_out="${cfgoutputs_out} include/jemalloc/jemalloc${install_suffix}.h"
448cfgoutputs_out="${cfgoutputs_out} include/jemalloc/internal/jemalloc_internal.h"
Jason Evans9f3b0a72010-10-07 09:53:26 -0700449cfgoutputs_out="${cfgoutputs_out} test/jemalloc_test.h"
Jason Evansb0fd5012010-01-17 01:49:20 -0800450
Jason Evansaee7fd22010-11-24 22:00:02 -0800451cfgoutputs_tup="Makefile"
452cfgoutputs_tup="${cfgoutputs_tup} doc/html.xsl:doc/html.xsl.in"
453cfgoutputs_tup="${cfgoutputs_tup} doc/manpages.xsl:doc/manpages.xsl.in"
454cfgoutputs_tup="${cfgoutputs_tup} doc/jemalloc${install_suffix}.xml:doc/jemalloc.xml.in"
Jason Evans376b1522010-02-11 14:45:59 -0800455cfgoutputs_tup="${cfgoutputs_tup} include/jemalloc/jemalloc${install_suffix}.h:include/jemalloc/jemalloc.h.in"
456cfgoutputs_tup="${cfgoutputs_tup} include/jemalloc/internal/jemalloc_internal.h"
Jason Evans9f3b0a72010-10-07 09:53:26 -0700457cfgoutputs_tup="${cfgoutputs_tup} test/jemalloc_test.h:test/jemalloc_test.h.in"
Jason Evansb0fd5012010-01-17 01:49:20 -0800458
Jason Evans0656ec02010-04-07 23:37:35 -0700459cfghdrs_in="${srcroot}include/jemalloc/jemalloc_defs.h.in"
Jason Evansb1726102012-02-28 16:50:47 -0800460cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/size_classes.sh"
Jason Evansb0fd5012010-01-17 01:49:20 -0800461
Jason Evans376b1522010-02-11 14:45:59 -0800462cfghdrs_out="include/jemalloc/jemalloc_defs${install_suffix}.h"
Jason Evansb1726102012-02-28 16:50:47 -0800463cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/size_classes.h"
Jason Evansb0fd5012010-01-17 01:49:20 -0800464
Jason Evans376b1522010-02-11 14:45:59 -0800465cfghdrs_tup="include/jemalloc/jemalloc_defs${install_suffix}.h:include/jemalloc/jemalloc_defs.h.in"
Jason Evansb0fd5012010-01-17 01:49:20 -0800466
Jason Evans355b4382010-09-20 19:20:48 -0700467dnl Do not silence irrelevant compiler warnings by default, since enabling this
468dnl option incurs a performance penalty.
469AC_ARG_ENABLE([cc-silence],
470 [AS_HELP_STRING([--enable-cc-silence],
471 [Silence irrelevant compiler warnings])],
472[if test "x$enable_cc_silence" = "xno" ; then
473 enable_cc_silence="0"
474else
475 enable_cc_silence="1"
476fi
477],
478[enable_cc_silence="0"]
479)
480if test "x$enable_cc_silence" = "x1" ; then
Jason Evanse24c7af2012-03-19 10:21:17 -0700481 AC_DEFINE([JEMALLOC_CC_SILENCE], [ ])
Jason Evans355b4382010-09-20 19:20:48 -0700482fi
483
Jason Evansb7924f52009-06-23 19:01:18 -0700484dnl Do not compile with debugging by default.
485AC_ARG_ENABLE([debug],
486 [AS_HELP_STRING([--enable-debug], [Build debugging code])],
487[if test "x$enable_debug" = "xno" ; then
488 enable_debug="0"
489else
490 enable_debug="1"
491fi
492],
493[enable_debug="0"]
494)
495if test "x$enable_debug" = "x1" ; then
496 AC_DEFINE([JEMALLOC_DEBUG], [ ])
Jason Evans2dbecf12010-09-05 10:35:13 -0700497 AC_DEFINE([JEMALLOC_IVSALLOC], [ ])
Jason Evansb7924f52009-06-23 19:01:18 -0700498fi
499AC_SUBST([enable_debug])
500
501dnl Only optimize if not debugging.
502if test "x$enable_debug" = "x0" -a "x$no_CFLAGS" = "xyes" ; then
503 dnl Make sure that an optimization flag was not specified in EXTRA_CFLAGS.
Jason Evansf3340ca2009-06-30 16:17:05 -0700504 optimize="no"
505 echo "$EXTRA_CFLAGS" | grep "\-O" >/dev/null || optimize="yes"
506 if test "x${optimize}" = "xyes" ; then
507 if test "x$GCC" = "xyes" ; then
508 JE_CFLAGS_APPEND([-O3])
509 JE_CFLAGS_APPEND([-funroll-loops])
Jason Evansf3340ca2009-06-30 16:17:05 -0700510 else
511 JE_CFLAGS_APPEND([-O])
512 fi
Jason Evansb7924f52009-06-23 19:01:18 -0700513 fi
514fi
515
Jason Evansd073a322012-02-28 20:41:16 -0800516dnl Enable statistics calculation by default.
Jason Evansb7924f52009-06-23 19:01:18 -0700517AC_ARG_ENABLE([stats],
Jason Evans777c1912012-02-28 20:49:22 -0800518 [AS_HELP_STRING([--disable-stats],
519 [Disable statistics calculation/reporting])],
Jason Evansb7924f52009-06-23 19:01:18 -0700520[if test "x$enable_stats" = "xno" ; then
521 enable_stats="0"
522else
523 enable_stats="1"
524fi
525],
Jason Evansd073a322012-02-28 20:41:16 -0800526[enable_stats="1"]
Jason Evansb7924f52009-06-23 19:01:18 -0700527)
528if test "x$enable_stats" = "x1" ; then
529 AC_DEFINE([JEMALLOC_STATS], [ ])
530fi
531AC_SUBST([enable_stats])
532
Jason Evans6109fe02010-02-10 10:37:56 -0800533dnl Do not enable profiling by default.
534AC_ARG_ENABLE([prof],
535 [AS_HELP_STRING([--enable-prof], [Enable allocation profiling])],
536[if test "x$enable_prof" = "xno" ; then
537 enable_prof="0"
538else
539 enable_prof="1"
540fi
541],
542[enable_prof="0"]
543)
Jason Evans77f350b2011-03-15 22:23:12 -0700544if test "x$enable_prof" = "x1" ; then
545 backtrace_method=""
Jason Evansb27805b2010-02-10 18:15:53 -0800546else
Jason Evans77f350b2011-03-15 22:23:12 -0700547 backtrace_method="N/A"
Jason Evansb27805b2010-02-10 18:15:53 -0800548fi
Jason Evans77f350b2011-03-15 22:23:12 -0700549
Jason Evans6109fe02010-02-10 10:37:56 -0800550AC_ARG_ENABLE([prof-libunwind],
551 [AS_HELP_STRING([--enable-prof-libunwind], [Use libunwind for backtracing])],
552[if test "x$enable_prof_libunwind" = "xno" ; then
553 enable_prof_libunwind="0"
554else
555 enable_prof_libunwind="1"
556fi
557],
558[enable_prof_libunwind="0"]
559)
Jason Evansca6bd4f2010-03-02 14:12:58 -0800560AC_ARG_WITH([static_libunwind],
561 [AS_HELP_STRING([--with-static-libunwind=<libunwind.a>],
562 [Path to static libunwind library; use rather than dynamically linking])],
563if test "x$with_static_libunwind" = "xno" ; then
564 LUNWIND="-lunwind"
565else
566 if test ! -f "$with_static_libunwind" ; then
567 AC_MSG_ERROR([Static libunwind not found: $with_static_libunwind])
568 fi
569 LUNWIND="$with_static_libunwind"
570fi,
571 LUNWIND="-lunwind"
572)
Jason Evans77f350b2011-03-15 22:23:12 -0700573if test "x$backtrace_method" = "x" -a "x$enable_prof_libunwind" = "x1" ; then
574 AC_CHECK_HEADERS([libunwind.h], , [enable_prof_libunwind="0"])
575 if test "x$LUNWIND" = "x-lunwind" ; then
576 AC_CHECK_LIB([unwind], [backtrace], [LIBS="$LIBS $LUNWIND"],
577 [enable_prof_libunwind="0"])
578 else
579 LIBS="$LIBS $LUNWIND"
580 fi
581 if test "x${enable_prof_libunwind}" = "x1" ; then
582 backtrace_method="libunwind"
583 AC_DEFINE([JEMALLOC_PROF_LIBUNWIND], [ ])
584 fi
585fi
586
587AC_ARG_ENABLE([prof-libgcc],
588 [AS_HELP_STRING([--disable-prof-libgcc],
589 [Do not use libgcc for backtracing])],
590[if test "x$enable_prof_libgcc" = "xno" ; then
591 enable_prof_libgcc="0"
592else
593 enable_prof_libgcc="1"
594fi
595],
596[enable_prof_libgcc="1"]
597)
598if test "x$backtrace_method" = "x" -a "x$enable_prof_libgcc" = "x1" \
599 -a "x$GCC" = "xyes" ; then
600 AC_CHECK_HEADERS([unwind.h], , [enable_prof_libgcc="0"])
601 AC_CHECK_LIB([gcc], [_Unwind_Backtrace], [LIBS="$LIBS -lgcc"], [enable_prof_libgcc="0"])
602 dnl The following is conservative, in that it only has entries for CPUs on
603 dnl which jemalloc has been tested.
604 AC_MSG_CHECKING([libgcc-based backtracing reliability on ${host_cpu}])
605 case "${host_cpu}" in
606 i[[3456]]86)
607 AC_MSG_RESULT([unreliable])
608 enable_prof_libgcc="0";
609 ;;
610 x86_64)
611 AC_MSG_RESULT([reliable])
612 ;;
613 *)
614 AC_MSG_RESULT([unreliable])
615 enable_prof_libgcc="0";
616 ;;
617 esac
618 if test "x${enable_prof_libgcc}" = "x1" ; then
619 backtrace_method="libgcc"
620 AC_DEFINE([JEMALLOC_PROF_LIBGCC], [ ])
621 fi
622else
623 enable_prof_libgcc="0"
624fi
625
626AC_ARG_ENABLE([prof-gcc],
627 [AS_HELP_STRING([--disable-prof-gcc],
628 [Do not use gcc intrinsics for backtracing])],
629[if test "x$enable_prof_gcc" = "xno" ; then
630 enable_prof_gcc="0"
631else
632 enable_prof_gcc="1"
633fi
634],
635[enable_prof_gcc="1"]
636)
637if test "x$backtrace_method" = "x" -a "x$enable_prof_gcc" = "x1" \
638 -a "x$GCC" = "xyes" ; then
639 backtrace_method="gcc intrinsics"
640 AC_DEFINE([JEMALLOC_PROF_GCC], [ ])
641else
642 enable_prof_gcc="0"
643fi
644
645if test "x$backtrace_method" = "x" ; then
646 backtrace_method="none (disabling profiling)"
647 enable_prof="0"
648fi
649AC_MSG_CHECKING([configured backtracing method])
650AC_MSG_RESULT([$backtrace_method])
Jason Evans2dbecf12010-09-05 10:35:13 -0700651if test "x$enable_prof" = "x1" ; then
Jason Evans2dbecf12010-09-05 10:35:13 -0700652 AC_DEFINE([JEMALLOC_PROF], [ ])
Jason Evans2dbecf12010-09-05 10:35:13 -0700653fi
654AC_SUBST([enable_prof])
Jason Evans2dbecf12010-09-05 10:35:13 -0700655
Jason Evans84cbbcb2009-12-29 00:09:15 -0800656dnl Enable thread-specific caching by default.
657AC_ARG_ENABLE([tcache],
658 [AS_HELP_STRING([--disable-tcache], [Disable per thread caches])],
659[if test "x$enable_tcache" = "xno" ; then
660 enable_tcache="0"
Jason Evansb7924f52009-06-23 19:01:18 -0700661else
Jason Evans84cbbcb2009-12-29 00:09:15 -0800662 enable_tcache="1"
Jason Evansb7924f52009-06-23 19:01:18 -0700663fi
664],
Jason Evans84cbbcb2009-12-29 00:09:15 -0800665[enable_tcache="1"]
Jason Evansb7924f52009-06-23 19:01:18 -0700666)
Jason Evans2dbecf12010-09-05 10:35:13 -0700667if test "x$enable_tcache" = "x1" ; then
668 AC_DEFINE([JEMALLOC_TCACHE], [ ])
669fi
670AC_SUBST([enable_tcache])
Jason Evansb7924f52009-06-23 19:01:18 -0700671
Jason Evans59ae2762012-04-16 17:52:27 -0700672dnl Enable VM deallocation via munmap() by default.
673AC_ARG_ENABLE([munmap],
674 [AS_HELP_STRING([--disable-munmap], [Disable VM deallocation via munmap(2)])],
675[if test "x$enable_munmap" = "xno" ; then
676 enable_munmap="0"
677else
678 enable_munmap="1"
679fi
680],
681[enable_munmap="${default_munmap}"]
682)
683if test "x$enable_munmap" = "x1" ; then
684 AC_DEFINE([JEMALLOC_MUNMAP], [ ])
685fi
686AC_SUBST([enable_munmap])
687
Jason Evansb7924f52009-06-23 19:01:18 -0700688dnl Do not enable allocation from DSS by default.
689AC_ARG_ENABLE([dss],
690 [AS_HELP_STRING([--enable-dss], [Enable allocation from DSS])],
691[if test "x$enable_dss" = "xno" ; then
692 enable_dss="0"
693else
694 enable_dss="1"
695fi
696],
697[enable_dss="0"]
698)
Mike Hommey83c324a2012-04-12 10:13:03 +0200699dnl Check whether the BSD/SUSv1 sbrk() exists. If not, disable DSS support.
700AC_CHECK_FUNC([sbrk], [have_sbrk="1"], [have_sbrk="0"])
701if test "x$have_sbrk" = "x1" ; then
702 AC_DEFINE([JEMALLOC_HAVE_SBRK], [ ])
703else
704 enable_dss="0"
705fi
706
Jason Evansb7924f52009-06-23 19:01:18 -0700707if test "x$enable_dss" = "x1" ; then
708 AC_DEFINE([JEMALLOC_DSS], [ ])
709fi
710AC_SUBST([enable_dss])
711
Jason Evans777c1912012-02-28 20:49:22 -0800712dnl Support the junk/zero filling option by default.
Jason Evansb7924f52009-06-23 19:01:18 -0700713AC_ARG_ENABLE([fill],
Jason Evans122449b2012-04-06 00:35:09 -0700714 [AS_HELP_STRING([--disable-fill],
715 [Disable support for junk/zero filling, quarantine, and redzones])],
Jason Evansb7924f52009-06-23 19:01:18 -0700716[if test "x$enable_fill" = "xno" ; then
717 enable_fill="0"
718else
719 enable_fill="1"
720fi
721],
Jason Evans777c1912012-02-28 20:49:22 -0800722[enable_fill="1"]
Jason Evansb7924f52009-06-23 19:01:18 -0700723)
724if test "x$enable_fill" = "x1" ; then
725 AC_DEFINE([JEMALLOC_FILL], [ ])
726fi
727AC_SUBST([enable_fill])
728
Jason Evansb1476112012-04-05 13:36:17 -0700729dnl Disable utrace(2)-based tracing by default.
730AC_ARG_ENABLE([utrace],
731 [AS_HELP_STRING([--enable-utrace], [Enable utrace(2)-based tracing])],
732[if test "x$enable_utrace" = "xno" ; then
733 enable_utrace="0"
734else
735 enable_utrace="1"
736fi
737],
738[enable_utrace="0"]
739)
740JE_COMPILABLE([utrace(2)], [
741#include <sys/types.h>
742#include <sys/param.h>
743#include <sys/time.h>
744#include <sys/uio.h>
745#include <sys/ktrace.h>
746], [
747 utrace((void *)0, 0);
748], [je_cv_utrace])
749if test "x${je_cv_utrace}" = "xno" ; then
750 enable_utrace="0"
751fi
752if test "x$enable_utrace" = "x1" ; then
753 AC_DEFINE([JEMALLOC_UTRACE], [ ])
754fi
755AC_SUBST([enable_utrace])
756
Jason Evans122449b2012-04-06 00:35:09 -0700757dnl Support Valgrind by default.
758AC_ARG_ENABLE([valgrind],
759 [AS_HELP_STRING([--disable-valgrind], [Disable support for Valgrind])],
760[if test "x$enable_valgrind" = "xno" ; then
761 enable_valgrind="0"
762else
763 enable_valgrind="1"
764fi
765],
766[enable_valgrind="1"]
767)
768if test "x$enable_valgrind" = "x1" ; then
769 JE_COMPILABLE([valgrind], [
770#include <valgrind/valgrind.h>
771#include <valgrind/memcheck.h>
772
773#if defined(__VALGRIND_MAJOR__) && defined(__VALGRIND_MINOR__) \
774 && (__VALGRIND_MAJOR__ > 3 || (__VALGRIND_MAJOR__ == 3 && \
775 __VALGRIND_MINOR__ >= 6))
776#else
777# error "Incompatible Valgrind version"
778#endif
779], [], [je_cv_valgrind])
780 if test "x${je_cv_valgrind}" = "xno" ; then
781 enable_valgrind="0"
782 fi
783 if test "x$enable_valgrind" = "x1" ; then
784 AC_DEFINE([JEMALLOC_VALGRIND], [ ])
785 fi
786fi
787AC_SUBST([enable_valgrind])
788
Jason Evansb7924f52009-06-23 19:01:18 -0700789dnl Do not support the xmalloc option by default.
790AC_ARG_ENABLE([xmalloc],
791 [AS_HELP_STRING([--enable-xmalloc], [Support xmalloc option])],
792[if test "x$enable_xmalloc" = "xno" ; then
793 enable_xmalloc="0"
794else
795 enable_xmalloc="1"
796fi
797],
798[enable_xmalloc="0"]
799)
800if test "x$enable_xmalloc" = "x1" ; then
801 AC_DEFINE([JEMALLOC_XMALLOC], [ ])
802fi
803AC_SUBST([enable_xmalloc])
804
Jason Evans6684cac2012-03-05 12:15:36 -0800805AC_CACHE_CHECK([STATIC_PAGE_SHIFT],
806 [je_cv_static_page_shift],
807 AC_RUN_IFELSE([AC_LANG_PROGRAM(
Jason Evansb7924f52009-06-23 19:01:18 -0700808[[#include <stdio.h>
809#include <unistd.h>
810#include <strings.h>
Jason Evans6684cac2012-03-05 12:15:36 -0800811]],
812[[
Jason Evansb7924f52009-06-23 19:01:18 -0700813 long result;
814 FILE *f;
815
816 result = sysconf(_SC_PAGESIZE);
817 if (result == -1) {
818 return 1;
819 }
820 f = fopen("conftest.out", "w");
821 if (f == NULL) {
822 return 1;
823 }
824 fprintf(f, "%u\n", ffs((int)result) - 1);
Jason Evans3cc1f1a2012-04-03 22:30:05 -0700825 fclose(f);
Jason Evansb7924f52009-06-23 19:01:18 -0700826
827 return 0;
828]])],
Jason Evans6684cac2012-03-05 12:15:36 -0800829 [je_cv_static_page_shift=`cat conftest.out`],
830 [je_cv_static_page_shift=undefined]))
831
832if test "x$je_cv_static_page_shift" != "xundefined"; then
833 AC_DEFINE_UNQUOTED([STATIC_PAGE_SHIFT], [$je_cv_static_page_shift])
834else
835 AC_MSG_ERROR([cannot determine value for STATIC_PAGE_SHIFT])
836fi
Jason Evansb7924f52009-06-23 19:01:18 -0700837
838dnl ============================================================================
839dnl jemalloc configuration.
840dnl
Jason Evansa40bc7a2010-03-02 13:01:16 -0800841
842dnl Set VERSION if source directory has an embedded git repository.
Jason Evans955851f2011-03-31 22:38:51 -0700843if test -d "${srcroot}.git" ; then
Jason Evans79d660d2010-09-17 17:38:24 -0700844 git describe --long --abbrev=40 > ${srcroot}VERSION
Jason Evansa40bc7a2010-03-02 13:01:16 -0800845fi
Jason Evansb7924f52009-06-23 19:01:18 -0700846jemalloc_version=`cat ${srcroot}VERSION`
Jason Evansa40bc7a2010-03-02 13:01:16 -0800847jemalloc_version_major=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]1}'`
848jemalloc_version_minor=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]2}'`
849jemalloc_version_bugfix=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]3}'`
850jemalloc_version_nrev=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]4}'`
851jemalloc_version_gid=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]5}'`
Jason Evansb7924f52009-06-23 19:01:18 -0700852AC_SUBST([jemalloc_version])
Jason Evansa40bc7a2010-03-02 13:01:16 -0800853AC_SUBST([jemalloc_version_major])
854AC_SUBST([jemalloc_version_minor])
855AC_SUBST([jemalloc_version_bugfix])
856AC_SUBST([jemalloc_version_nrev])
857AC_SUBST([jemalloc_version_gid])
Jason Evansb7924f52009-06-23 19:01:18 -0700858
859dnl ============================================================================
860dnl Configure pthreads.
861
862AC_CHECK_HEADERS([pthread.h], , [AC_MSG_ERROR([pthread.h is missing])])
Jason Evans39006f92012-03-16 16:57:02 -0700863dnl Some systems may embed pthreads functionality in libc; check for libpthread
864dnl first, but try libc too before failing.
Jason Evansb7924f52009-06-23 19:01:18 -0700865AC_CHECK_LIB([pthread], [pthread_create], [LIBS="$LIBS -lpthread"],
Jason Evans39006f92012-03-16 16:57:02 -0700866 [AC_SEARCH_LIBS([pthread_create], , ,
867 AC_MSG_ERROR([libpthread is missing]))])
Jason Evansb7924f52009-06-23 19:01:18 -0700868
869CPPFLAGS="$CPPFLAGS -D_REENTRANT"
870
Jason Evanscd9a1342012-03-21 18:33:03 -0700871dnl Check whether the BSD-specific _malloc_thread_cleanup() exists. If so, use
872dnl it rather than pthreads TSD cleanup functions to support cleanup during
873dnl thread exit, in order to avoid pthreads library recursion during
874dnl bootstrapping.
Jason Evanscd9a1342012-03-21 18:33:03 -0700875AC_CHECK_FUNC([_malloc_thread_cleanup],
876 [have__malloc_thread_cleanup="1"],
877 [have__malloc_thread_cleanup="0"]
878 )
879if test "x$have__malloc_thread_cleanup" = "x1" ; then
880 AC_DEFINE([JEMALLOC_MALLOC_THREAD_CLEANUP], [ ])
881 force_tls="1"
882fi
883
Jason Evans41b6afb2012-02-02 22:04:57 -0800884dnl Check whether the BSD-specific _pthread_mutex_init_calloc_cb() exists. If
885dnl so, mutex initialization causes allocation, and we need to implement this
886dnl callback function in order to prevent recursive allocation.
887AC_CHECK_FUNC([_pthread_mutex_init_calloc_cb],
888 [have__pthread_mutex_init_calloc_cb="1"],
889 [have__pthread_mutex_init_calloc_cb="0"]
890 )
891if test "x$have__pthread_mutex_init_calloc_cb" = "x1" ; then
892 AC_DEFINE([JEMALLOC_MUTEX_INIT_CB])
893fi
894
Jason Evans0fee70d2012-02-13 12:36:11 -0800895dnl Disable lazy locking by default.
Jason Evansb7924f52009-06-23 19:01:18 -0700896AC_ARG_ENABLE([lazy_lock],
Jason Evans0fee70d2012-02-13 12:36:11 -0800897 [AS_HELP_STRING([--enable-lazy-lock],
898 [Enable lazy locking (only lock when multi-threaded)])],
Jason Evansb7924f52009-06-23 19:01:18 -0700899[if test "x$enable_lazy_lock" = "xno" ; then
900 enable_lazy_lock="0"
901else
902 enable_lazy_lock="1"
903fi
904],
Jason Evans0fee70d2012-02-13 12:36:11 -0800905[enable_lazy_lock="0"]
Jason Evansb7924f52009-06-23 19:01:18 -0700906)
Jason Evansfd4fcef2012-03-23 17:40:58 -0700907if test "x$enable_lazy_lock" = "x0" -a "x${force_lazy_lock}" = "x1" ; then
908 AC_MSG_RESULT([Forcing lazy-lock to avoid allocator/threading bootstrap issues])
909 enable_lazy_lock="1"
910fi
Jason Evansb7924f52009-06-23 19:01:18 -0700911if test "x$enable_lazy_lock" = "x1" ; then
912 AC_CHECK_HEADERS([dlfcn.h], , [AC_MSG_ERROR([dlfcn.h is missing])])
Jason Evans650285d2012-03-19 10:25:27 -0700913 AC_CHECK_FUNC([dlsym], [],
914 [AC_CHECK_LIB([dl], [dlsym], [LIBS="$LIBS -ldl"],
915 [AC_MSG_ERROR([libdl is missing])])
916 ])
Jason Evansb7924f52009-06-23 19:01:18 -0700917 AC_DEFINE([JEMALLOC_LAZY_LOCK], [ ])
918fi
919AC_SUBST([enable_lazy_lock])
920
Jason Evans78d815c2010-01-17 14:06:20 -0800921AC_ARG_ENABLE([tls],
922 [AS_HELP_STRING([--disable-tls], [Disable thread-local storage (__thread keyword)])],
923if test "x$enable_tls" = "xno" ; then
924 enable_tls="0"
925else
926 enable_tls="1"
927fi
928,
929enable_tls="1"
930)
Jason Evanscd9a1342012-03-21 18:33:03 -0700931if test "x${enable_tls}" = "x0" -a "x${force_tls}" = "x1" ; then
932 AC_MSG_RESULT([Forcing TLS to avoid allocator/threading bootstrap issues])
933 enable_tls="1"
934fi
Jason Evansb80581d2012-03-23 16:17:43 -0700935if test "x${enable_tls}" = "x1" -a "x${force_tls}" = "x0" ; then
936 AC_MSG_RESULT([Forcing no TLS to avoid allocator/threading bootstrap issues])
937 enable_tls="0"
938fi
Jason Evans78d815c2010-01-17 14:06:20 -0800939if test "x${enable_tls}" = "x1" ; then
940AC_MSG_CHECKING([for TLS])
Jason Evans6684cac2012-03-05 12:15:36 -0800941AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
Jason Evans78d815c2010-01-17 14:06:20 -0800942[[
943 __thread int x;
944]], [[
945 x = 42;
946
947 return 0;
948]])],
949 AC_MSG_RESULT([yes]),
950 AC_MSG_RESULT([no])
951 enable_tls="0")
952fi
Jason Evansb267d0f2010-08-13 15:42:29 -0700953AC_SUBST([enable_tls])
Jason Evanse24c7af2012-03-19 10:21:17 -0700954if test "x${enable_tls}" = "x1" ; then
955 AC_DEFINE_UNQUOTED([JEMALLOC_TLS], [ ])
Jason Evanscd9a1342012-03-21 18:33:03 -0700956elif test "x${force_tls}" = "x1" ; then
957 AC_MSG_ERROR([Failed to configure TLS, which is mandatory for correct function])
Jason Evans78d815c2010-01-17 14:06:20 -0800958fi
959
Jason Evans2dbecf12010-09-05 10:35:13 -0700960dnl ============================================================================
Jason Evans84c8eef2011-03-16 10:30:13 -0700961dnl Check for ffsl(3), and fail if not found. This function exists on all
962dnl platforms that jemalloc currently has a chance of functioning on without
963dnl modification.
Jason Evans4c2faa82012-03-13 11:09:23 -0700964JE_COMPILABLE([a program using ffsl], [
Jason Evans382132e2012-04-04 15:25:43 -0700965#include <strings.h>
Jason Evans4c2faa82012-03-13 11:09:23 -0700966#include <string.h>
967], [
968 {
969 int rv = ffsl(0x08);
970 }
971], [je_cv_function_ffsl])
Jason Evans6684cac2012-03-05 12:15:36 -0800972if test "x${je_cv_function_ffsl}" != "xyes" ; then
973 AC_MSG_ERROR([Cannot build without ffsl(3)])
974fi
Jason Evans84c8eef2011-03-16 10:30:13 -0700975
976dnl ============================================================================
Jason Evans763baa62011-03-18 19:10:31 -0700977dnl Check for atomic(3) operations as provided on Darwin.
978
979JE_COMPILABLE([Darwin OSAtomic*()], [
980#include <libkern/OSAtomic.h>
981#include <inttypes.h>
982], [
983 {
984 int32_t x32 = 0;
985 volatile int32_t *x32p = &x32;
986 OSAtomicAdd32(1, x32p);
987 }
988 {
989 int64_t x64 = 0;
990 volatile int64_t *x64p = &x64;
991 OSAtomicAdd64(1, x64p);
992 }
Jason Evans6684cac2012-03-05 12:15:36 -0800993], [je_cv_osatomic])
994if test "x${je_cv_osatomic}" = "xyes" ; then
Jason Evanse24c7af2012-03-19 10:21:17 -0700995 AC_DEFINE([JEMALLOC_OSATOMIC], [ ])
Jason Evans763baa62011-03-18 19:10:31 -0700996fi
997
998dnl ============================================================================
Mike Hommeyc1e567b2012-03-26 17:03:41 +0200999dnl Check whether __sync_{add,sub}_and_fetch() are available despite
1000dnl __GCC_HAVE_SYNC_COMPARE_AND_SWAP_n macros being undefined.
1001
1002AC_DEFUN([JE_SYNC_COMPARE_AND_SWAP_CHECK],[
1003 AC_CACHE_CHECK([whether to force $1-bit __sync_{add,sub}_and_fetch()],
1004 [je_cv_sync_compare_and_swap_$2],
Mike Hommey2cfe6d62012-03-27 15:03:07 +02001005 [AC_LINK_IFELSE([AC_LANG_PROGRAM([
1006 #include <stdint.h>
1007 ],
1008 [
1009 #ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_$2
1010 {
1011 uint$1_t x$1 = 0;
1012 __sync_add_and_fetch(&x$1, 42);
1013 __sync_sub_and_fetch(&x$1, 1);
1014 }
1015 #else
1016 #error __GCC_HAVE_SYNC_COMPARE_AND_SWAP_$2 is defined, no need to force
1017 #endif
1018 ])],
Mike Hommeyc1e567b2012-03-26 17:03:41 +02001019 [je_cv_sync_compare_and_swap_$2=yes],
1020 [je_cv_sync_compare_and_swap_$2=no])])
1021
1022 if test "x${je_cv_sync_compare_and_swap_$2}" = "xyes" ; then
1023 AC_DEFINE([JE_FORCE_SYNC_COMPARE_AND_SWAP_$2], [ ])
1024 fi
1025])
1026
1027if test "x${je_cv_osatomic}" != "xyes" ; then
1028 JE_SYNC_COMPARE_AND_SWAP_CHECK(32, 4)
1029 JE_SYNC_COMPARE_AND_SWAP_CHECK(64, 8)
1030fi
1031
1032dnl ============================================================================
Jason Evans893a0ed2011-03-18 19:30:18 -07001033dnl Check for spinlock(3) operations as provided on Darwin.
1034
1035JE_COMPILABLE([Darwin OSSpin*()], [
1036#include <libkern/OSAtomic.h>
1037#include <inttypes.h>
1038], [
1039 OSSpinLock lock = 0;
1040 OSSpinLockLock(&lock);
1041 OSSpinLockUnlock(&lock);
Jason Evans6684cac2012-03-05 12:15:36 -08001042], [je_cv_osspin])
1043if test "x${je_cv_osspin}" = "xyes" ; then
Jason Evanse24c7af2012-03-19 10:21:17 -07001044 AC_DEFINE([JEMALLOC_OSSPIN], [ ])
Jason Evans893a0ed2011-03-18 19:30:18 -07001045fi
1046
1047dnl ============================================================================
Jason Evans2dbecf12010-09-05 10:35:13 -07001048dnl Darwin-related configuration.
Jason Evans78d815c2010-01-17 14:06:20 -08001049
Jason Evans2dbecf12010-09-05 10:35:13 -07001050if test "x${abi}" = "xmacho" ; then
Jason Evanse24c7af2012-03-19 10:21:17 -07001051 AC_DEFINE([JEMALLOC_IVSALLOC], [ ])
1052 AC_DEFINE([JEMALLOC_ZONE], [ ])
Jason Evans6109fe02010-02-10 10:37:56 -08001053
Jason Evans2dbecf12010-09-05 10:35:13 -07001054 dnl The szone version jumped from 3 to 6 between the OS X 10.5.x and 10.6
1055 dnl releases. malloc_zone_t and malloc_introspection_t have new fields in
1056 dnl 10.6, which is the only source-level indication of the change.
1057 AC_MSG_CHECKING([malloc zone version])
Mike Hommey154829d2012-03-20 18:01:38 +01001058 AC_DEFUN([JE_ZONE_PROGRAM],
1059 [AC_LANG_PROGRAM(
1060 [#include <malloc/malloc.h>],
1061 [static foo[[sizeof($1) $2 sizeof(void *) * $3 ? 1 : -1]]]
1062 )])
Jason Evans2dbecf12010-09-05 10:35:13 -07001063
Mike Hommey154829d2012-03-20 18:01:38 +01001064 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,14)],[JEMALLOC_ZONE_VERSION=3],[
1065 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,15)],[JEMALLOC_ZONE_VERSION=5],[
1066 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,16)],[
1067 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_introspection_t,==,9)],[JEMALLOC_ZONE_VERSION=6],[
1068 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_introspection_t,==,13)],[JEMALLOC_ZONE_VERSION=7],[JEMALLOC_ZONE_VERSION=]
1069 )])],[
1070 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,17)],[JEMALLOC_ZONE_VERSION=8],[
1071 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,>,17)],[JEMALLOC_ZONE_VERSION=9],[JEMALLOC_ZONE_VERSION=]
1072 )])])])])
1073 if test "x${JEMALLOC_ZONE_VERSION}" = "x"; then
1074 AC_MSG_RESULT([unsupported])
1075 AC_MSG_ERROR([Unsupported malloc zone version])
1076 fi
1077 if test "${JEMALLOC_ZONE_VERSION}" = 9; then
1078 JEMALLOC_ZONE_VERSION=8
1079 AC_MSG_RESULT([> 8])
1080 else
1081 AC_MSG_RESULT([$JEMALLOC_ZONE_VERSION])
1082 fi
1083 AC_DEFINE_UNQUOTED(JEMALLOC_ZONE_VERSION, [$JEMALLOC_ZONE_VERSION])
Jason Evansb27805b2010-02-10 18:15:53 -08001084fi
1085
Jason Evansb7924f52009-06-23 19:01:18 -07001086dnl ============================================================================
1087dnl Check for typedefs, structures, and compiler characteristics.
1088AC_HEADER_STDBOOL
1089
Jason Evansb1726102012-02-28 16:50:47 -08001090AC_CONFIG_COMMANDS([include/jemalloc/internal/size_classes.h], [
1091 mkdir -p "include/jemalloc/internal"
1092 "${srcdir}/include/jemalloc/internal/size_classes.sh" > "${objroot}include/jemalloc/internal/size_classes.h"
1093])
1094
Jason Evansb7924f52009-06-23 19:01:18 -07001095dnl Process .in files.
Jason Evansb0fd5012010-01-17 01:49:20 -08001096AC_SUBST([cfghdrs_in])
1097AC_SUBST([cfghdrs_out])
Jason Evans0656ec02010-04-07 23:37:35 -07001098AC_CONFIG_HEADERS([$cfghdrs_tup])
Jason Evansb7924f52009-06-23 19:01:18 -07001099
1100dnl ============================================================================
1101dnl Generate outputs.
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +04001102AC_CONFIG_FILES([$cfgoutputs_tup config.stamp bin/jemalloc.sh])
Jason Evansb0fd5012010-01-17 01:49:20 -08001103AC_SUBST([cfgoutputs_in])
1104AC_SUBST([cfgoutputs_out])
Jason Evansb7924f52009-06-23 19:01:18 -07001105AC_OUTPUT
1106
1107dnl ============================================================================
1108dnl Print out the results of configuration.
1109AC_MSG_RESULT([===============================================================================])
Jason Evansf576c632011-11-01 22:27:41 -07001110AC_MSG_RESULT([jemalloc version : ${jemalloc_version}])
1111AC_MSG_RESULT([library revision : ${rev}])
Jason Evansb7924f52009-06-23 19:01:18 -07001112AC_MSG_RESULT([])
1113AC_MSG_RESULT([CC : ${CC}])
1114AC_MSG_RESULT([CPPFLAGS : ${CPPFLAGS}])
1115AC_MSG_RESULT([CFLAGS : ${CFLAGS}])
1116AC_MSG_RESULT([LDFLAGS : ${LDFLAGS}])
1117AC_MSG_RESULT([LIBS : ${LIBS}])
1118AC_MSG_RESULT([RPATH_EXTRA : ${RPATH_EXTRA}])
1119AC_MSG_RESULT([])
Jason Evansaee7fd22010-11-24 22:00:02 -08001120AC_MSG_RESULT([XSLTPROC : ${XSLTPROC}])
1121AC_MSG_RESULT([XSLROOT : ${XSLROOT}])
1122AC_MSG_RESULT([])
Jason Evansb7924f52009-06-23 19:01:18 -07001123AC_MSG_RESULT([PREFIX : ${PREFIX}])
1124AC_MSG_RESULT([BINDIR : ${BINDIR}])
Jason Evans662a0172009-07-01 19:24:31 -07001125AC_MSG_RESULT([INCLUDEDIR : ${INCLUDEDIR}])
1126AC_MSG_RESULT([LIBDIR : ${LIBDIR}])
Jason Evansb7924f52009-06-23 19:01:18 -07001127AC_MSG_RESULT([DATADIR : ${DATADIR}])
1128AC_MSG_RESULT([MANDIR : ${MANDIR}])
1129AC_MSG_RESULT([])
1130AC_MSG_RESULT([srcroot : ${srcroot}])
1131AC_MSG_RESULT([abs_srcroot : ${abs_srcroot}])
1132AC_MSG_RESULT([objroot : ${objroot}])
1133AC_MSG_RESULT([abs_objroot : ${abs_objroot}])
1134AC_MSG_RESULT([])
Jason Evans90895cf2009-12-29 00:09:15 -08001135AC_MSG_RESULT([JEMALLOC_PREFIX : ${JEMALLOC_PREFIX}])
Jason Evans746e77a2011-07-30 16:40:52 -07001136AC_MSG_RESULT([JEMALLOC_PRIVATE_NAMESPACE])
1137AC_MSG_RESULT([ : ${JEMALLOC_PRIVATE_NAMESPACE}])
Jason Evansb0fd5012010-01-17 01:49:20 -08001138AC_MSG_RESULT([install_suffix : ${install_suffix}])
Jason Evansb7924f52009-06-23 19:01:18 -07001139AC_MSG_RESULT([autogen : ${enable_autogen}])
Jason Evans7e77eaf2012-03-02 17:47:37 -08001140AC_MSG_RESULT([experimental : ${enable_experimental}])
Jason Evans355b4382010-09-20 19:20:48 -07001141AC_MSG_RESULT([cc-silence : ${enable_cc_silence}])
Jason Evansb7924f52009-06-23 19:01:18 -07001142AC_MSG_RESULT([debug : ${enable_debug}])
1143AC_MSG_RESULT([stats : ${enable_stats}])
Jason Evans6109fe02010-02-10 10:37:56 -08001144AC_MSG_RESULT([prof : ${enable_prof}])
1145AC_MSG_RESULT([prof-libunwind : ${enable_prof_libunwind}])
Jason Evans77f350b2011-03-15 22:23:12 -07001146AC_MSG_RESULT([prof-libgcc : ${enable_prof_libgcc}])
1147AC_MSG_RESULT([prof-gcc : ${enable_prof_gcc}])
Jason Evans84cbbcb2009-12-29 00:09:15 -08001148AC_MSG_RESULT([tcache : ${enable_tcache}])
Jason Evansb7924f52009-06-23 19:01:18 -07001149AC_MSG_RESULT([fill : ${enable_fill}])
Jason Evansb1476112012-04-05 13:36:17 -07001150AC_MSG_RESULT([utrace : ${enable_utrace}])
Jason Evans122449b2012-04-06 00:35:09 -07001151AC_MSG_RESULT([valgrind : ${enable_valgrind}])
1152AC_MSG_RESULT([xmalloc : ${enable_xmalloc}])
Jason Evans59ae2762012-04-16 17:52:27 -07001153AC_MSG_RESULT([munmap : ${enable_munmap}])
Jason Evansb7924f52009-06-23 19:01:18 -07001154AC_MSG_RESULT([dss : ${enable_dss}])
Jason Evansb7924f52009-06-23 19:01:18 -07001155AC_MSG_RESULT([lazy_lock : ${enable_lazy_lock}])
Jason Evans2dbecf12010-09-05 10:35:13 -07001156AC_MSG_RESULT([tls : ${enable_tls}])
Jason Evansb7924f52009-06-23 19:01:18 -07001157AC_MSG_RESULT([===============================================================================])