blob: 938c0191ccea1d9c95abf0b2272860d4d28bff00 [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]])],
Jason Evans99b0fbb2014-02-24 16:08:38 -080022 [je_cv_cflags_appended=$1]
Jason Evansf3340ca2009-06-30 16:17:05 -070023 AC_MSG_RESULT([yes]),
Jason Evans99b0fbb2014-02-24 16:08:38 -080024 [je_cv_cflags_appended=]
Jason Evansf3340ca2009-06-30 16:17:05 -070025 AC_MSG_RESULT([no])
26 [CFLAGS="${TCFLAGS}"]
27)
28])
29
30dnl JE_COMPILABLE(label, hcode, mcode, rvar)
Jason Evans4c2faa82012-03-13 11:09:23 -070031dnl
Jason Evansf3e139a2012-03-19 09:54:20 -070032dnl Use AC_LINK_IFELSE() rather than AC_COMPILE_IFELSE() so that linker errors
Jason Evans4c2faa82012-03-13 11:09:23 -070033dnl cause failure.
Jason Evansf3340ca2009-06-30 16:17:05 -070034AC_DEFUN([JE_COMPILABLE],
35[
Jason Evans6684cac2012-03-05 12:15:36 -080036AC_CACHE_CHECK([whether $1 is compilable],
37 [$4],
Jason Evansf3e139a2012-03-19 09:54:20 -070038 [AC_LINK_IFELSE([AC_LANG_PROGRAM([$2],
39 [$3])],
40 [$4=yes],
41 [$4=no])])
Jason Evansf3340ca2009-06-30 16:17:05 -070042])
43
44dnl ============================================================================
45
Jason Evansf576c632011-11-01 22:27:41 -070046dnl Library revision.
47rev=1
48AC_SUBST([rev])
49
Jason Evansb7924f52009-06-23 19:01:18 -070050srcroot=$srcdir
51if test "x${srcroot}" = "x." ; then
52 srcroot=""
53else
54 srcroot="${srcroot}/"
55fi
56AC_SUBST([srcroot])
57abs_srcroot="`cd \"${srcdir}\"; pwd`/"
58AC_SUBST([abs_srcroot])
59
60objroot=""
61AC_SUBST([objroot])
62abs_objroot="`pwd`/"
63AC_SUBST([abs_objroot])
64
65dnl Munge install path variables.
66if test "x$prefix" = "xNONE" ; then
67 prefix="/usr/local"
68fi
69if test "x$exec_prefix" = "xNONE" ; then
70 exec_prefix=$prefix
71fi
72PREFIX=$prefix
73AC_SUBST([PREFIX])
74BINDIR=`eval echo $bindir`
75BINDIR=`eval echo $BINDIR`
76AC_SUBST([BINDIR])
77INCLUDEDIR=`eval echo $includedir`
78INCLUDEDIR=`eval echo $INCLUDEDIR`
79AC_SUBST([INCLUDEDIR])
80LIBDIR=`eval echo $libdir`
81LIBDIR=`eval echo $LIBDIR`
82AC_SUBST([LIBDIR])
83DATADIR=`eval echo $datadir`
84DATADIR=`eval echo $DATADIR`
85AC_SUBST([DATADIR])
86MANDIR=`eval echo $mandir`
87MANDIR=`eval echo $MANDIR`
88AC_SUBST([MANDIR])
89
Jason Evansaee7fd22010-11-24 22:00:02 -080090dnl Support for building documentation.
Jason Evans7329a4f2013-01-22 10:53:29 -080091AC_PATH_PROG([XSLTPROC], [xsltproc], [false], [$PATH])
Jason Evans7091b412012-03-19 09:36:44 -070092if test -d "/usr/share/xml/docbook/stylesheet/docbook-xsl" ; then
93 DEFAULT_XSLROOT="/usr/share/xml/docbook/stylesheet/docbook-xsl"
94elif test -d "/usr/share/sgml/docbook/xsl-stylesheets" ; then
95 DEFAULT_XSLROOT="/usr/share/sgml/docbook/xsl-stylesheets"
96else
97 dnl Documentation building will fail if this default gets used.
98 DEFAULT_XSLROOT=""
99fi
Jason Evansaee7fd22010-11-24 22:00:02 -0800100AC_ARG_WITH([xslroot],
Jason Evans7091b412012-03-19 09:36:44 -0700101 [AS_HELP_STRING([--with-xslroot=<path>], [XSL stylesheet root path])], [
Jason Evansaee7fd22010-11-24 22:00:02 -0800102if test "x$with_xslroot" = "xno" ; then
Jason Evans7091b412012-03-19 09:36:44 -0700103 XSLROOT="${DEFAULT_XSLROOT}"
Jason Evansaee7fd22010-11-24 22:00:02 -0800104else
105 XSLROOT="${with_xslroot}"
Jason Evans7091b412012-03-19 09:36:44 -0700106fi
107],
108 XSLROOT="${DEFAULT_XSLROOT}"
Jason Evansaee7fd22010-11-24 22:00:02 -0800109)
110AC_SUBST([XSLROOT])
111
Jason Evansf3340ca2009-06-30 16:17:05 -0700112dnl If CFLAGS isn't defined, set CFLAGS to something reasonable. Otherwise,
113dnl just prevent autoconf from molesting CFLAGS.
Jason Evansb7924f52009-06-23 19:01:18 -0700114CFLAGS=$CFLAGS
115AC_PROG_CC
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200116if test "x$GCC" != "xyes" ; then
117 AC_CACHE_CHECK([whether compiler is MSVC],
118 [je_cv_msvc],
119 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
120 [
121#ifndef _MSC_VER
122 int fail[-1];
123#endif
124])],
125 [je_cv_msvc=yes],
126 [je_cv_msvc=no])])
127fi
128
Jason Evansb7924f52009-06-23 19:01:18 -0700129if test "x$CFLAGS" = "x" ; then
130 no_CFLAGS="yes"
Jason Evanscfeccd32010-03-03 15:48:20 -0800131 if test "x$GCC" = "xyes" ; then
132 JE_CFLAGS_APPEND([-std=gnu99])
Jason Evans99b0fbb2014-02-24 16:08:38 -0800133 if test "x$je_cv_cflags_appended" = "x-std=gnu99" ; then
134 AC_DEFINE_UNQUOTED([JEMALLOC_HAS_RESTRICT])
135 fi
Jason Evanscfeccd32010-03-03 15:48:20 -0800136 JE_CFLAGS_APPEND([-Wall])
137 JE_CFLAGS_APPEND([-pipe])
138 JE_CFLAGS_APPEND([-g3])
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200139 elif test "x$je_cv_msvc" = "xyes" ; then
140 CC="$CC -nologo"
141 JE_CFLAGS_APPEND([-Zi])
142 JE_CFLAGS_APPEND([-MT])
143 JE_CFLAGS_APPEND([-W3])
144 CPPFLAGS="$CPPFLAGS -I${srcroot}/include/msvc_compat"
Jason Evanscfeccd32010-03-03 15:48:20 -0800145 fi
Jason Evansb7924f52009-06-23 19:01:18 -0700146fi
147dnl Append EXTRA_CFLAGS to CFLAGS, if defined.
148if test "x$EXTRA_CFLAGS" != "x" ; then
Jason Evansf3340ca2009-06-30 16:17:05 -0700149 JE_CFLAGS_APPEND([$EXTRA_CFLAGS])
Jason Evansb7924f52009-06-23 19:01:18 -0700150fi
151AC_PROG_CPP
152
Jason Evansb7924f52009-06-23 19:01:18 -0700153AC_CHECK_SIZEOF([void *])
154if test "x${ac_cv_sizeof_void_p}" = "x8" ; then
Jason Evans94ad2b52009-12-29 00:09:15 -0800155 LG_SIZEOF_PTR=3
Jason Evansb7924f52009-06-23 19:01:18 -0700156elif test "x${ac_cv_sizeof_void_p}" = "x4" ; then
Jason Evans94ad2b52009-12-29 00:09:15 -0800157 LG_SIZEOF_PTR=2
Jason Evansb7924f52009-06-23 19:01:18 -0700158else
159 AC_MSG_ERROR([Unsupported pointer size: ${ac_cv_sizeof_void_p}])
160fi
Jason Evans94ad2b52009-12-29 00:09:15 -0800161AC_DEFINE_UNQUOTED([LG_SIZEOF_PTR], [$LG_SIZEOF_PTR])
162
163AC_CHECK_SIZEOF([int])
164if test "x${ac_cv_sizeof_int}" = "x8" ; then
165 LG_SIZEOF_INT=3
166elif test "x${ac_cv_sizeof_int}" = "x4" ; then
167 LG_SIZEOF_INT=2
168else
169 AC_MSG_ERROR([Unsupported int size: ${ac_cv_sizeof_int}])
170fi
171AC_DEFINE_UNQUOTED([LG_SIZEOF_INT], [$LG_SIZEOF_INT])
Jason Evansb7924f52009-06-23 19:01:18 -0700172
Jason Evans84c8eef2011-03-16 10:30:13 -0700173AC_CHECK_SIZEOF([long])
174if test "x${ac_cv_sizeof_long}" = "x8" ; then
175 LG_SIZEOF_LONG=3
176elif test "x${ac_cv_sizeof_long}" = "x4" ; then
177 LG_SIZEOF_LONG=2
178else
179 AC_MSG_ERROR([Unsupported long size: ${ac_cv_sizeof_long}])
180fi
181AC_DEFINE_UNQUOTED([LG_SIZEOF_LONG], [$LG_SIZEOF_LONG])
182
Jason Evansd81e4bd2012-03-06 14:57:45 -0800183AC_CHECK_SIZEOF([intmax_t])
184if test "x${ac_cv_sizeof_intmax_t}" = "x16" ; then
185 LG_SIZEOF_INTMAX_T=4
186elif test "x${ac_cv_sizeof_intmax_t}" = "x8" ; then
187 LG_SIZEOF_INTMAX_T=3
188elif test "x${ac_cv_sizeof_intmax_t}" = "x4" ; then
189 LG_SIZEOF_INTMAX_T=2
190else
Mike Hommey14103d32012-04-20 08:38:39 +0200191 AC_MSG_ERROR([Unsupported intmax_t size: ${ac_cv_sizeof_intmax_t}])
Jason Evansd81e4bd2012-03-06 14:57:45 -0800192fi
193AC_DEFINE_UNQUOTED([LG_SIZEOF_INTMAX_T], [$LG_SIZEOF_INTMAX_T])
194
Jason Evansb7924f52009-06-23 19:01:18 -0700195AC_CANONICAL_HOST
196dnl CPU-specific settings.
197CPU_SPINWAIT=""
198case "${host_cpu}" in
199 i[[345]]86)
200 ;;
201 i686)
Jason Evansf3340ca2009-06-30 16:17:05 -0700202 JE_COMPILABLE([__asm__], [], [[__asm__ volatile("pause"); return 0;]],
Jason Evans6684cac2012-03-05 12:15:36 -0800203 [je_cv_asm])
204 if test "x${je_cv_asm}" = "xyes" ; then
Jason Evansf3340ca2009-06-30 16:17:05 -0700205 CPU_SPINWAIT='__asm__ volatile("pause")'
206 fi
Jason Evans80061b62013-12-09 13:21:08 -0800207 AC_DEFINE_UNQUOTED([HAVE_SSE2], [ ])
Jason Evansb7924f52009-06-23 19:01:18 -0700208 ;;
209 x86_64)
Jason Evansf3340ca2009-06-30 16:17:05 -0700210 JE_COMPILABLE([__asm__ syntax], [],
Jason Evans6684cac2012-03-05 12:15:36 -0800211 [[__asm__ volatile("pause"); return 0;]], [je_cv_asm])
212 if test "x${je_cv_asm}" = "xyes" ; then
Jason Evansf3340ca2009-06-30 16:17:05 -0700213 CPU_SPINWAIT='__asm__ volatile("pause")'
214 fi
Jason Evans80061b62013-12-09 13:21:08 -0800215 AC_DEFINE_UNQUOTED([HAVE_SSE2], [ ])
216 ;;
217 powerpc)
218 AC_DEFINE_UNQUOTED([HAVE_ALTIVEC], [ ])
Jason Evansb7924f52009-06-23 19:01:18 -0700219 ;;
220 *)
221 ;;
222esac
223AC_DEFINE_UNQUOTED([CPU_SPINWAIT], [$CPU_SPINWAIT])
224
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400225LD_PRELOAD_VAR="LD_PRELOAD"
Jason Evansf576c632011-11-01 22:27:41 -0700226so="so"
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200227importlib="${so}"
Mike Hommey7cdea392012-04-30 12:38:27 +0200228o="$ac_objext"
Mike Hommey5bee66d2012-04-16 16:30:24 +0200229a="a"
Mike Hommey7cdea392012-04-30 12:38:27 +0200230exe="$ac_exeext"
Mike Hommeya19e87f2012-04-21 21:27:46 -0700231libprefix="lib"
Mike Hommeyfa08da72012-04-16 16:30:25 +0200232DSO_LDFLAGS='-shared -Wl,-soname,$(@F)'
233RPATH='-Wl,-rpath,$(1)'
Mike Hommey7cdea392012-04-30 12:38:27 +0200234SOREV="${so}.${rev}"
Mike Hommey188da7c2012-04-18 18:29:41 +0200235PIC_CFLAGS='-fPIC -DPIC'
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200236CTARGET='-o $@'
237LDTARGET='-o $@'
238EXTRA_LDFLAGS=
Jason Evans80ddf492013-08-20 11:48:19 +0100239ARFLAGS='crus'
240AROUT=' $@'
Mike Hommey79c4bca2012-05-02 21:30:51 +0200241CC_MM=1
Jason Evans7372b152012-02-10 20:22:09 -0800242
Jory A. Prattad505e02013-08-11 09:44:59 -0500243AN_MAKEVAR([AR], [AC_PROG_AR])
244AN_PROGRAM([ar], [AC_PROG_AR])
245AC_DEFUN([AC_PROG_AR], [AC_CHECK_TOOL(AR, ar, :)])
246AC_PROG_AR
247
Jason Evansb7924f52009-06-23 19:01:18 -0700248dnl Platform-specific settings. abi and RPATH can probably be determined
249dnl programmatically, but doing so is error-prone, which makes it generally
250dnl not worth the trouble.
251dnl
252dnl Define cpp macros in CPPFLAGS, rather than doing AC_DEFINE(macro), since the
253dnl definitions need to be seen before any headers are included, which is a pain
254dnl to make happen otherwise.
Jason Evans59ae2762012-04-16 17:52:27 -0700255default_munmap="1"
Jason Evans247d1242012-10-09 16:20:10 -0700256JEMALLOC_USABLE_SIZE_CONST="const"
Jason Evansb7924f52009-06-23 19:01:18 -0700257case "${host}" in
258 *-*-darwin*)
Mike Hommeya6770a72012-05-03 14:12:49 +0200259 CFLAGS="$CFLAGS"
Jason Evansb7924f52009-06-23 19:01:18 -0700260 abi="macho"
Jason Evanse24c7af2012-03-19 10:21:17 -0700261 AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ])
Jason Evansb7924f52009-06-23 19:01:18 -0700262 RPATH=""
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400263 LD_PRELOAD_VAR="DYLD_INSERT_LIBRARIES"
Jason Evansf576c632011-11-01 22:27:41 -0700264 so="dylib"
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200265 importlib="${so}"
Jason Evansb80581d2012-03-23 16:17:43 -0700266 force_tls="0"
Mike Hommeyfa08da72012-04-16 16:30:25 +0200267 DSO_LDFLAGS='-shared -Wl,-dylib_install_name,$(@F)'
Mike Hommey7cdea392012-04-30 12:38:27 +0200268 SOREV="${rev}.${so}"
Jason Evans66688532013-12-03 21:49:36 -0800269 sbrk_deprecated="1"
Jason Evansb7924f52009-06-23 19:01:18 -0700270 ;;
271 *-*-freebsd*)
272 CFLAGS="$CFLAGS"
273 abi="elf"
Jason Evanse24c7af2012-03-19 10:21:17 -0700274 AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ])
Jason Evansfd4fcef2012-03-23 17:40:58 -0700275 force_lazy_lock="1"
Jason Evansb7924f52009-06-23 19:01:18 -0700276 ;;
277 *-*-linux*)
278 CFLAGS="$CFLAGS"
279 CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
280 abi="elf"
Garrett Cooper13e4e242012-12-02 17:58:40 -0800281 AC_DEFINE([JEMALLOC_HAS_ALLOCA_H])
Jason Evanse24c7af2012-03-19 10:21:17 -0700282 AC_DEFINE([JEMALLOC_PURGE_MADVISE_DONTNEED], [ ])
Jason Evans02b23122012-04-05 11:06:23 -0700283 AC_DEFINE([JEMALLOC_THREADED_INIT], [ ])
Jason Evans247d1242012-10-09 16:20:10 -0700284 JEMALLOC_USABLE_SIZE_CONST=""
Jason Evans59ae2762012-04-16 17:52:27 -0700285 default_munmap="0"
Jason Evansb7924f52009-06-23 19:01:18 -0700286 ;;
287 *-*-netbsd*)
288 AC_MSG_CHECKING([ABI])
289 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
290[[#ifdef __ELF__
291/* ELF */
292#else
293#error aout
294#endif
295]])],
296 [CFLAGS="$CFLAGS"; abi="elf"],
297 [abi="aout"])
298 AC_MSG_RESULT([$abi])
Jason Evanse24c7af2012-03-19 10:21:17 -0700299 AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ])
Jason Evansb7924f52009-06-23 19:01:18 -0700300 ;;
301 *-*-solaris2*)
302 CFLAGS="$CFLAGS"
303 abi="elf"
George Koladdd6bd42014-02-12 23:05:45 +0000304 AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ])
Mike Hommeyfa08da72012-04-16 16:30:25 +0200305 RPATH='-Wl,-R,$(1)'
Jason Evansb7924f52009-06-23 19:01:18 -0700306 dnl Solaris needs this for sigwait().
307 CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
308 LIBS="$LIBS -lposix4 -lsocket -lnsl"
309 ;;
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400310 *-ibm-aix*)
311 if "$LG_SIZEOF_PTR" = "8"; then
312 dnl 64bit AIX
313 LD_PRELOAD_VAR="LDR_PRELOAD64"
314 else
315 dnl 32bit AIX
316 LD_PRELOAD_VAR="LDR_PRELOAD"
317 fi
318 abi="xcoff"
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400319 ;;
Mike Hommeya19e87f2012-04-21 21:27:46 -0700320 *-*-mingw*)
321 abi="pecoff"
322 force_tls="0"
323 RPATH=""
324 so="dll"
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200325 if test "x$je_cv_msvc" = "xyes" ; then
326 importlib="lib"
327 DSO_LDFLAGS="-LD"
328 EXTRA_LDFLAGS="-link -DEBUG"
329 CTARGET='-Fo$@'
330 LDTARGET='-Fe$@'
Jory A. Prattad505e02013-08-11 09:44:59 -0500331 AR='lib'
332 ARFLAGS='-nologo -out:'
Jason Evans80ddf492013-08-20 11:48:19 +0100333 AROUT='$@'
Mike Hommey79c4bca2012-05-02 21:30:51 +0200334 CC_MM=
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200335 else
336 importlib="${so}"
337 DSO_LDFLAGS="-shared"
338 fi
Mike Hommeya19e87f2012-04-21 21:27:46 -0700339 a="lib"
340 libprefix=""
Mike Hommey7cdea392012-04-30 12:38:27 +0200341 SOREV="${so}"
Mike Hommeya19e87f2012-04-21 21:27:46 -0700342 PIC_CFLAGS=""
343 ;;
Jason Evansb7924f52009-06-23 19:01:18 -0700344 *)
345 AC_MSG_RESULT([Unsupported operating system: ${host}])
346 abi="elf"
Jason Evansb7924f52009-06-23 19:01:18 -0700347 ;;
348esac
Jason Evans247d1242012-10-09 16:20:10 -0700349AC_DEFINE_UNQUOTED([JEMALLOC_USABLE_SIZE_CONST], [$JEMALLOC_USABLE_SIZE_CONST])
Jason Evansb7924f52009-06-23 19:01:18 -0700350AC_SUBST([abi])
351AC_SUBST([RPATH])
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400352AC_SUBST([LD_PRELOAD_VAR])
Jason Evansf576c632011-11-01 22:27:41 -0700353AC_SUBST([so])
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200354AC_SUBST([importlib])
Mike Hommey5bee66d2012-04-16 16:30:24 +0200355AC_SUBST([o])
356AC_SUBST([a])
357AC_SUBST([exe])
Mike Hommeya19e87f2012-04-21 21:27:46 -0700358AC_SUBST([libprefix])
Mike Hommeyfa08da72012-04-16 16:30:25 +0200359AC_SUBST([DSO_LDFLAGS])
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200360AC_SUBST([EXTRA_LDFLAGS])
Mike Hommey85221d52012-04-18 18:29:40 +0200361AC_SUBST([SOREV])
Mike Hommey188da7c2012-04-18 18:29:41 +0200362AC_SUBST([PIC_CFLAGS])
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200363AC_SUBST([CTARGET])
364AC_SUBST([LDTARGET])
365AC_SUBST([MKLIB])
Jason Evans80ddf492013-08-20 11:48:19 +0100366AC_SUBST([ARFLAGS])
367AC_SUBST([AROUT])
Mike Hommey79c4bca2012-05-02 21:30:51 +0200368AC_SUBST([CC_MM])
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200369
Jason Evansfa5d2452011-03-15 10:25:59 -0700370JE_COMPILABLE([__attribute__ syntax],
371 [static __attribute__((unused)) void foo(void){}],
372 [],
Jason Evans6684cac2012-03-05 12:15:36 -0800373 [je_cv_attribute])
374if test "x${je_cv_attribute}" = "xyes" ; then
Jason Evansfa5d2452011-03-15 10:25:59 -0700375 AC_DEFINE([JEMALLOC_HAVE_ATTR], [ ])
376 if test "x${GCC}" = "xyes" -a "x${abi}" = "xelf"; then
377 JE_CFLAGS_APPEND([-fvisibility=hidden])
378 fi
379fi
Jason Evans3cc1f1a2012-04-03 22:30:05 -0700380dnl Check for tls_model attribute support (clang 3.0 still lacks support).
381SAVED_CFLAGS="${CFLAGS}"
382JE_CFLAGS_APPEND([-Werror])
383JE_COMPILABLE([tls_model attribute], [],
384 [static __thread int
385 __attribute__((tls_model("initial-exec"))) foo;
386 foo = 0;],
387 [je_cv_tls_model])
388CFLAGS="${SAVED_CFLAGS}"
389if test "x${je_cv_tls_model}" = "xyes" ; then
390 AC_DEFINE([JEMALLOC_TLS_MODEL],
391 [__attribute__((tls_model("initial-exec")))])
392else
393 AC_DEFINE([JEMALLOC_TLS_MODEL], [ ])
394fi
Jason Evansfa5d2452011-03-15 10:25:59 -0700395
Jason Evansb7924f52009-06-23 19:01:18 -0700396dnl Support optional additions to rpath.
397AC_ARG_WITH([rpath],
Jason Evans90895cf2009-12-29 00:09:15 -0800398 [AS_HELP_STRING([--with-rpath=<rpath>], [Colon-separated rpath (ELF systems only)])],
Jason Evansb7924f52009-06-23 19:01:18 -0700399if test "x$with_rpath" = "xno" ; then
400 RPATH_EXTRA=
401else
402 RPATH_EXTRA="`echo $with_rpath | tr \":\" \" \"`"
403fi,
404 RPATH_EXTRA=
405)
406AC_SUBST([RPATH_EXTRA])
407
408dnl Disable rules that do automatic regeneration of configure output by default.
409AC_ARG_ENABLE([autogen],
Jason Evans78d815c2010-01-17 14:06:20 -0800410 [AS_HELP_STRING([--enable-autogen], [Automatically regenerate configure output])],
Jason Evansb7924f52009-06-23 19:01:18 -0700411if test "x$enable_autogen" = "xno" ; then
412 enable_autogen="0"
413else
414 enable_autogen="1"
415fi
416,
417enable_autogen="0"
418)
419AC_SUBST([enable_autogen])
420
421AC_PROG_INSTALL
422AC_PROG_RANLIB
Jason Evans7329a4f2013-01-22 10:53:29 -0800423AC_PATH_PROG([LD], [ld], [false], [$PATH])
424AC_PATH_PROG([AUTOCONF], [autoconf], [false], [$PATH])
Jason Evansb7924f52009-06-23 19:01:18 -0700425
Jason Evansd82a5e62013-12-12 22:35:52 -0800426public_syms="malloc_conf malloc_message malloc calloc posix_memalign aligned_alloc realloc free mallocx rallocx xallocx sallocx dallocx nallocx mallctl mallctlnametomib mallctlbymib malloc_stats_print malloc_usable_size"
Jason Evans7e77eaf2012-03-02 17:47:37 -0800427
428dnl Check for allocator-related functions that should be wrapped.
429AC_CHECK_FUNC([memalign],
Jason Evanse24c7af2012-03-19 10:21:17 -0700430 [AC_DEFINE([JEMALLOC_OVERRIDE_MEMALIGN], [ ])
Jason Evans7e77eaf2012-03-02 17:47:37 -0800431 public_syms="${public_syms} memalign"])
432AC_CHECK_FUNC([valloc],
Jason Evanse24c7af2012-03-19 10:21:17 -0700433 [AC_DEFINE([JEMALLOC_OVERRIDE_VALLOC], [ ])
Jason Evans7e77eaf2012-03-02 17:47:37 -0800434 public_syms="${public_syms} valloc"])
435
436dnl Support the experimental API by default.
437AC_ARG_ENABLE([experimental],
438 [AS_HELP_STRING([--disable-experimental],
439 [Disable support for the experimental API])],
440[if test "x$enable_experimental" = "xno" ; then
441 enable_experimental="0"
442else
443 enable_experimental="1"
444fi
445],
446[enable_experimental="1"]
447)
448if test "x$enable_experimental" = "x1" ; then
449 AC_DEFINE([JEMALLOC_EXPERIMENTAL], [ ])
450 public_syms="${public_syms} allocm dallocm nallocm rallocm sallocm"
451fi
452AC_SUBST([enable_experimental])
453
Jason Evans748dfac2013-12-06 18:27:33 -0800454dnl Do not compute test code coverage by default.
455GCOV_FLAGS=
456AC_ARG_ENABLE([code-coverage],
457 [AS_HELP_STRING([--enable-code-coverage],
458 [Enable code coverage])],
459[if test "x$enable_code_coverage" = "xno" ; then
460 enable_code_coverage="0"
461else
462 enable_code_coverage="1"
463fi
464],
465[enable_code_coverage="0"]
466)
467if test "x$enable_code_coverage" = "x1" ; then
468 deoptimize="no"
469 echo "$CFLAGS $EXTRA_CFLAGS" | grep '\-O' >/dev/null || deoptimize="yes"
470 if test "x${deoptimize}" = "xyes" ; then
471 JE_CFLAGS_APPEND([-O0])
472 fi
473 JE_CFLAGS_APPEND([-fprofile-arcs -ftest-coverage])
474 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -fprofile-arcs -ftest-coverage"
475 AC_DEFINE([JEMALLOC_CODE_COVERAGE], [ ])
476fi
477AC_SUBST([enable_code_coverage])
478
Jason Evans0a5489e2012-03-01 17:19:20 -0800479dnl Perform no name mangling by default.
480AC_ARG_WITH([mangling],
481 [AS_HELP_STRING([--with-mangling=<map>], [Mangle symbols in <map>])],
482 [mangling_map="$with_mangling"], [mangling_map=""])
Jason Evans0a5489e2012-03-01 17:19:20 -0800483
Jason Evans90895cf2009-12-29 00:09:15 -0800484dnl Do not prefix public APIs by default.
485AC_ARG_WITH([jemalloc_prefix],
486 [AS_HELP_STRING([--with-jemalloc-prefix=<prefix>], [Prefix to prepend to all public APIs])],
Jason Evansb0fd5012010-01-17 01:49:20 -0800487 [JEMALLOC_PREFIX="$with_jemalloc_prefix"],
Mike Hommey7cdea392012-04-30 12:38:27 +0200488 [if test "x$abi" != "xmacho" -a "x$abi" != "xpecoff"; then
Jason Evans2dbecf12010-09-05 10:35:13 -0700489 JEMALLOC_PREFIX=""
490else
491 JEMALLOC_PREFIX="je_"
492fi]
Jason Evans90895cf2009-12-29 00:09:15 -0800493)
494if test "x$JEMALLOC_PREFIX" != "x" ; then
Jason Evanse7339702010-10-23 18:37:06 -0700495 JEMALLOC_CPREFIX=`echo ${JEMALLOC_PREFIX} | tr "a-z" "A-Z"`
496 AC_DEFINE_UNQUOTED([JEMALLOC_PREFIX], ["$JEMALLOC_PREFIX"])
497 AC_DEFINE_UNQUOTED([JEMALLOC_CPREFIX], ["$JEMALLOC_CPREFIX"])
Jason Evans90895cf2009-12-29 00:09:15 -0800498fi
499
Mike Hommey99066602012-11-19 10:55:26 +0100500AC_ARG_WITH([export],
501 [AS_HELP_STRING([--without-export], [disable exporting jemalloc public APIs])],
502 [if test "x$with_export" = "xno"; then
Jason Evans2625c892013-01-22 16:46:27 -0800503 AC_DEFINE([JEMALLOC_EXPORT],[])
Mike Hommey99066602012-11-19 10:55:26 +0100504fi]
505)
506
Jason Evans86abd0d2013-11-30 15:25:42 -0800507dnl Mangle library-private APIs.
Jason Evans746e77a2011-07-30 16:40:52 -0700508AC_ARG_WITH([private_namespace],
509 [AS_HELP_STRING([--with-private-namespace=<prefix>], [Prefix to prepend to all library-private APIs])],
Jason Evans86abd0d2013-11-30 15:25:42 -0800510 [JEMALLOC_PRIVATE_NAMESPACE="${with_private_namespace}je_"],
511 [JEMALLOC_PRIVATE_NAMESPACE="je_"]
Jason Evans746e77a2011-07-30 16:40:52 -0700512)
Jason Evans86abd0d2013-11-30 15:25:42 -0800513AC_DEFINE_UNQUOTED([JEMALLOC_PRIVATE_NAMESPACE], [$JEMALLOC_PRIVATE_NAMESPACE])
514private_namespace="$JEMALLOC_PRIVATE_NAMESPACE"
515AC_SUBST([private_namespace])
Jason Evans746e77a2011-07-30 16:40:52 -0700516
Jason Evansb0fd5012010-01-17 01:49:20 -0800517dnl Do not add suffix to installed files by default.
518AC_ARG_WITH([install_suffix],
519 [AS_HELP_STRING([--with-install-suffix=<suffix>], [Suffix to append to all installed files])],
520 [INSTALL_SUFFIX="$with_install_suffix"],
521 [INSTALL_SUFFIX=]
522)
523install_suffix="$INSTALL_SUFFIX"
524AC_SUBST([install_suffix])
525
Jason Evans86abd0d2013-11-30 15:25:42 -0800526dnl Substitute @je_@ in jemalloc_protos.h.in, primarily to make generation of
527dnl jemalloc_protos_jet.h easy.
528je_="je_"
529AC_SUBST([je_])
530
Jason Evansaee7fd22010-11-24 22:00:02 -0800531cfgoutputs_in="${srcroot}Makefile.in"
532cfgoutputs_in="${cfgoutputs_in} ${srcroot}doc/html.xsl.in"
533cfgoutputs_in="${cfgoutputs_in} ${srcroot}doc/manpages.xsl.in"
534cfgoutputs_in="${cfgoutputs_in} ${srcroot}doc/jemalloc.xml.in"
Jason Evans86abd0d2013-11-30 15:25:42 -0800535cfgoutputs_in="${cfgoutputs_in} ${srcroot}include/jemalloc/jemalloc_macros.h.in"
536cfgoutputs_in="${cfgoutputs_in} ${srcroot}include/jemalloc/jemalloc_protos.h.in"
Jason Evans0656ec02010-04-07 23:37:35 -0700537cfgoutputs_in="${cfgoutputs_in} ${srcroot}include/jemalloc/internal/jemalloc_internal.h.in"
Jason Evans86abd0d2013-11-30 15:25:42 -0800538cfgoutputs_in="${cfgoutputs_in} ${srcroot}test/test.sh.in"
539cfgoutputs_in="${cfgoutputs_in} ${srcroot}test/include/test/jemalloc_test.h.in"
Jason Evansb0fd5012010-01-17 01:49:20 -0800540
Jason Evansaee7fd22010-11-24 22:00:02 -0800541cfgoutputs_out="Makefile"
542cfgoutputs_out="${cfgoutputs_out} doc/html.xsl"
543cfgoutputs_out="${cfgoutputs_out} doc/manpages.xsl"
Jason Evans86abd0d2013-11-30 15:25:42 -0800544cfgoutputs_out="${cfgoutputs_out} doc/jemalloc.xml"
545cfgoutputs_out="${cfgoutputs_out} include/jemalloc/jemalloc_macros.h"
546cfgoutputs_out="${cfgoutputs_out} include/jemalloc/jemalloc_protos.h"
Jason Evans376b1522010-02-11 14:45:59 -0800547cfgoutputs_out="${cfgoutputs_out} include/jemalloc/internal/jemalloc_internal.h"
Jason Evans86abd0d2013-11-30 15:25:42 -0800548cfgoutputs_out="${cfgoutputs_out} test/test.sh"
549cfgoutputs_out="${cfgoutputs_out} test/include/test/jemalloc_test.h"
Jason Evansb0fd5012010-01-17 01:49:20 -0800550
Jason Evansaee7fd22010-11-24 22:00:02 -0800551cfgoutputs_tup="Makefile"
552cfgoutputs_tup="${cfgoutputs_tup} doc/html.xsl:doc/html.xsl.in"
553cfgoutputs_tup="${cfgoutputs_tup} doc/manpages.xsl:doc/manpages.xsl.in"
Jason Evans86abd0d2013-11-30 15:25:42 -0800554cfgoutputs_tup="${cfgoutputs_tup} doc/jemalloc.xml:doc/jemalloc.xml.in"
555cfgoutputs_tup="${cfgoutputs_tup} include/jemalloc/jemalloc_macros.h:include/jemalloc/jemalloc_macros.h.in"
556cfgoutputs_tup="${cfgoutputs_tup} include/jemalloc/jemalloc_protos.h:include/jemalloc/jemalloc_protos.h.in"
Jason Evans376b1522010-02-11 14:45:59 -0800557cfgoutputs_tup="${cfgoutputs_tup} include/jemalloc/internal/jemalloc_internal.h"
Jason Evans86abd0d2013-11-30 15:25:42 -0800558cfgoutputs_tup="${cfgoutputs_tup} test/test.sh:test/test.sh.in"
559cfgoutputs_tup="${cfgoutputs_tup} test/include/test/jemalloc_test.h:test/include/test/jemalloc_test.h.in"
Jason Evansb0fd5012010-01-17 01:49:20 -0800560
Jason Evans0656ec02010-04-07 23:37:35 -0700561cfghdrs_in="${srcroot}include/jemalloc/jemalloc_defs.h.in"
Jason Evans86abd0d2013-11-30 15:25:42 -0800562cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/jemalloc_internal_defs.h.in"
563cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/private_namespace.sh"
564cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/private_unnamespace.sh"
Jason Evansf234dc52014-01-16 17:38:01 -0800565cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/private_symbols.txt"
Jason Evans86abd0d2013-11-30 15:25:42 -0800566cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/public_namespace.sh"
567cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/public_unnamespace.sh"
Jason Evansb1726102012-02-28 16:50:47 -0800568cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/size_classes.sh"
Jason Evansf234dc52014-01-16 17:38:01 -0800569cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/jemalloc_rename.sh"
570cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/jemalloc_mangle.sh"
Jason Evansdc1bed62013-12-05 21:43:46 -0800571cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/jemalloc.sh"
Jason Evans80061b62013-12-09 13:21:08 -0800572cfghdrs_in="${cfghdrs_in} ${srcroot}test/include/test/jemalloc_test_defs.h.in"
Jason Evansb0fd5012010-01-17 01:49:20 -0800573
Jason Evans86abd0d2013-11-30 15:25:42 -0800574cfghdrs_out="include/jemalloc/jemalloc_defs.h"
575cfghdrs_out="${cfghdrs_out} include/jemalloc/jemalloc${install_suffix}.h"
Jason Evans86abd0d2013-11-30 15:25:42 -0800576cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/private_namespace.h"
577cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/private_unnamespace.h"
Jason Evansf234dc52014-01-16 17:38:01 -0800578cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/public_symbols.txt"
Jason Evans86abd0d2013-11-30 15:25:42 -0800579cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/public_namespace.h"
580cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/public_unnamespace.h"
Jason Evansb1726102012-02-28 16:50:47 -0800581cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/size_classes.h"
Jason Evansf234dc52014-01-16 17:38:01 -0800582cfghdrs_out="${cfghdrs_out} include/jemalloc/jemalloc_protos_jet.h"
583cfghdrs_out="${cfghdrs_out} include/jemalloc/jemalloc_rename.h"
584cfghdrs_out="${cfghdrs_out} include/jemalloc/jemalloc_mangle.h"
585cfghdrs_out="${cfghdrs_out} include/jemalloc/jemalloc_mangle_jet.h"
586cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/jemalloc_internal_defs.h"
Jason Evans80061b62013-12-09 13:21:08 -0800587cfghdrs_out="${cfghdrs_out} test/include/test/jemalloc_test_defs.h"
Jason Evansb0fd5012010-01-17 01:49:20 -0800588
Jason Evans86abd0d2013-11-30 15:25:42 -0800589cfghdrs_tup="include/jemalloc/jemalloc_defs.h:include/jemalloc/jemalloc_defs.h.in"
590cfghdrs_tup="${cfghdrs_tup} include/jemalloc/internal/jemalloc_internal_defs.h:${srcroot}include/jemalloc/internal/jemalloc_internal_defs.h.in"
Jason Evans80061b62013-12-09 13:21:08 -0800591cfghdrs_tup="${cfghdrs_tup} test/include/test/jemalloc_test_defs.h:${srcroot}test/include/test/jemalloc_test_defs.h.in"
Jason Evansb0fd5012010-01-17 01:49:20 -0800592
Jason Evans355b4382010-09-20 19:20:48 -0700593dnl Do not silence irrelevant compiler warnings by default, since enabling this
594dnl option incurs a performance penalty.
595AC_ARG_ENABLE([cc-silence],
596 [AS_HELP_STRING([--enable-cc-silence],
597 [Silence irrelevant compiler warnings])],
598[if test "x$enable_cc_silence" = "xno" ; then
599 enable_cc_silence="0"
600else
601 enable_cc_silence="1"
602fi
603],
604[enable_cc_silence="0"]
605)
606if test "x$enable_cc_silence" = "x1" ; then
Jason Evanse24c7af2012-03-19 10:21:17 -0700607 AC_DEFINE([JEMALLOC_CC_SILENCE], [ ])
Jason Evans355b4382010-09-20 19:20:48 -0700608fi
609
Jason Evansb7924f52009-06-23 19:01:18 -0700610dnl Do not compile with debugging by default.
611AC_ARG_ENABLE([debug],
Mike Hommey5135e342012-12-06 22:16:26 +0100612 [AS_HELP_STRING([--enable-debug], [Build debugging code (implies --enable-ivsalloc)])],
Jason Evansb7924f52009-06-23 19:01:18 -0700613[if test "x$enable_debug" = "xno" ; then
614 enable_debug="0"
615else
616 enable_debug="1"
617fi
618],
619[enable_debug="0"]
620)
621if test "x$enable_debug" = "x1" ; then
622 AC_DEFINE([JEMALLOC_DEBUG], [ ])
Mike Hommey5135e342012-12-06 22:16:26 +0100623 enable_ivsalloc="1"
Jason Evansb7924f52009-06-23 19:01:18 -0700624fi
625AC_SUBST([enable_debug])
626
Mike Hommey5135e342012-12-06 22:16:26 +0100627dnl Do not validate pointers by default.
628AC_ARG_ENABLE([ivsalloc],
629 [AS_HELP_STRING([--enable-ivsalloc], [Validate pointers passed through the public API])],
630[if test "x$enable_ivsalloc" = "xno" ; then
631 enable_ivsalloc="0"
632else
633 enable_ivsalloc="1"
634fi
635],
636[enable_ivsalloc="0"]
637)
638if test "x$enable_ivsalloc" = "x1" ; then
639 AC_DEFINE([JEMALLOC_IVSALLOC], [ ])
640fi
641
Jason Evansb7924f52009-06-23 19:01:18 -0700642dnl Only optimize if not debugging.
643if test "x$enable_debug" = "x0" -a "x$no_CFLAGS" = "xyes" ; then
644 dnl Make sure that an optimization flag was not specified in EXTRA_CFLAGS.
Jason Evansf3340ca2009-06-30 16:17:05 -0700645 optimize="no"
Jason Evans748dfac2013-12-06 18:27:33 -0800646 echo "$CFLAGS $EXTRA_CFLAGS" | grep '\-O' >/dev/null || optimize="yes"
Jason Evansf3340ca2009-06-30 16:17:05 -0700647 if test "x${optimize}" = "xyes" ; then
648 if test "x$GCC" = "xyes" ; then
649 JE_CFLAGS_APPEND([-O3])
650 JE_CFLAGS_APPEND([-funroll-loops])
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200651 elif test "x$je_cv_msvc" = "xyes" ; then
652 JE_CFLAGS_APPEND([-O2])
Jason Evansf3340ca2009-06-30 16:17:05 -0700653 else
654 JE_CFLAGS_APPEND([-O])
655 fi
Jason Evansb7924f52009-06-23 19:01:18 -0700656 fi
657fi
658
Jason Evansd073a322012-02-28 20:41:16 -0800659dnl Enable statistics calculation by default.
Jason Evansb7924f52009-06-23 19:01:18 -0700660AC_ARG_ENABLE([stats],
Jason Evans777c1912012-02-28 20:49:22 -0800661 [AS_HELP_STRING([--disable-stats],
662 [Disable statistics calculation/reporting])],
Jason Evansb7924f52009-06-23 19:01:18 -0700663[if test "x$enable_stats" = "xno" ; then
664 enable_stats="0"
665else
666 enable_stats="1"
667fi
668],
Jason Evansd073a322012-02-28 20:41:16 -0800669[enable_stats="1"]
Jason Evansb7924f52009-06-23 19:01:18 -0700670)
671if test "x$enable_stats" = "x1" ; then
672 AC_DEFINE([JEMALLOC_STATS], [ ])
673fi
674AC_SUBST([enable_stats])
675
Jason Evans6109fe02010-02-10 10:37:56 -0800676dnl Do not enable profiling by default.
677AC_ARG_ENABLE([prof],
678 [AS_HELP_STRING([--enable-prof], [Enable allocation profiling])],
679[if test "x$enable_prof" = "xno" ; then
680 enable_prof="0"
681else
682 enable_prof="1"
683fi
684],
685[enable_prof="0"]
686)
Jason Evans77f350b2011-03-15 22:23:12 -0700687if test "x$enable_prof" = "x1" ; then
688 backtrace_method=""
Jason Evansb27805b2010-02-10 18:15:53 -0800689else
Jason Evans77f350b2011-03-15 22:23:12 -0700690 backtrace_method="N/A"
Jason Evansb27805b2010-02-10 18:15:53 -0800691fi
Jason Evans77f350b2011-03-15 22:23:12 -0700692
Jason Evans6109fe02010-02-10 10:37:56 -0800693AC_ARG_ENABLE([prof-libunwind],
694 [AS_HELP_STRING([--enable-prof-libunwind], [Use libunwind for backtracing])],
695[if test "x$enable_prof_libunwind" = "xno" ; then
696 enable_prof_libunwind="0"
697else
698 enable_prof_libunwind="1"
699fi
700],
701[enable_prof_libunwind="0"]
702)
Jason Evansca6bd4f2010-03-02 14:12:58 -0800703AC_ARG_WITH([static_libunwind],
704 [AS_HELP_STRING([--with-static-libunwind=<libunwind.a>],
705 [Path to static libunwind library; use rather than dynamically linking])],
706if test "x$with_static_libunwind" = "xno" ; then
707 LUNWIND="-lunwind"
708else
709 if test ! -f "$with_static_libunwind" ; then
710 AC_MSG_ERROR([Static libunwind not found: $with_static_libunwind])
711 fi
712 LUNWIND="$with_static_libunwind"
713fi,
714 LUNWIND="-lunwind"
715)
Jason Evans77f350b2011-03-15 22:23:12 -0700716if test "x$backtrace_method" = "x" -a "x$enable_prof_libunwind" = "x1" ; then
717 AC_CHECK_HEADERS([libunwind.h], , [enable_prof_libunwind="0"])
718 if test "x$LUNWIND" = "x-lunwind" ; then
719 AC_CHECK_LIB([unwind], [backtrace], [LIBS="$LIBS $LUNWIND"],
720 [enable_prof_libunwind="0"])
721 else
722 LIBS="$LIBS $LUNWIND"
723 fi
724 if test "x${enable_prof_libunwind}" = "x1" ; then
725 backtrace_method="libunwind"
726 AC_DEFINE([JEMALLOC_PROF_LIBUNWIND], [ ])
727 fi
728fi
729
730AC_ARG_ENABLE([prof-libgcc],
731 [AS_HELP_STRING([--disable-prof-libgcc],
732 [Do not use libgcc for backtracing])],
733[if test "x$enable_prof_libgcc" = "xno" ; then
734 enable_prof_libgcc="0"
735else
736 enable_prof_libgcc="1"
737fi
738],
739[enable_prof_libgcc="1"]
740)
741if test "x$backtrace_method" = "x" -a "x$enable_prof_libgcc" = "x1" \
742 -a "x$GCC" = "xyes" ; then
743 AC_CHECK_HEADERS([unwind.h], , [enable_prof_libgcc="0"])
744 AC_CHECK_LIB([gcc], [_Unwind_Backtrace], [LIBS="$LIBS -lgcc"], [enable_prof_libgcc="0"])
745 dnl The following is conservative, in that it only has entries for CPUs on
746 dnl which jemalloc has been tested.
747 AC_MSG_CHECKING([libgcc-based backtracing reliability on ${host_cpu}])
748 case "${host_cpu}" in
749 i[[3456]]86)
750 AC_MSG_RESULT([unreliable])
751 enable_prof_libgcc="0";
752 ;;
753 x86_64)
754 AC_MSG_RESULT([reliable])
755 ;;
756 *)
757 AC_MSG_RESULT([unreliable])
758 enable_prof_libgcc="0";
759 ;;
760 esac
761 if test "x${enable_prof_libgcc}" = "x1" ; then
762 backtrace_method="libgcc"
763 AC_DEFINE([JEMALLOC_PROF_LIBGCC], [ ])
764 fi
765else
766 enable_prof_libgcc="0"
767fi
768
769AC_ARG_ENABLE([prof-gcc],
770 [AS_HELP_STRING([--disable-prof-gcc],
771 [Do not use gcc intrinsics for backtracing])],
772[if test "x$enable_prof_gcc" = "xno" ; then
773 enable_prof_gcc="0"
774else
775 enable_prof_gcc="1"
776fi
777],
778[enable_prof_gcc="1"]
779)
780if test "x$backtrace_method" = "x" -a "x$enable_prof_gcc" = "x1" \
781 -a "x$GCC" = "xyes" ; then
782 backtrace_method="gcc intrinsics"
783 AC_DEFINE([JEMALLOC_PROF_GCC], [ ])
784else
785 enable_prof_gcc="0"
786fi
787
788if test "x$backtrace_method" = "x" ; then
789 backtrace_method="none (disabling profiling)"
790 enable_prof="0"
791fi
792AC_MSG_CHECKING([configured backtracing method])
793AC_MSG_RESULT([$backtrace_method])
Jason Evans2dbecf12010-09-05 10:35:13 -0700794if test "x$enable_prof" = "x1" ; then
Jason Evans6716aa82012-04-23 13:04:55 -0700795 if test "x${force_tls}" = "x0" ; then
796 AC_MSG_ERROR([Heap profiling requires TLS]);
797 fi
798 force_tls="1"
Jason Evansd37d5ad2013-12-05 23:01:50 -0800799
800 if test "x$abi" != "xpecoff"; then
801 dnl Heap profiling uses the log(3) function.
802 LIBS="$LIBS -lm"
803 fi
804
Jason Evans2dbecf12010-09-05 10:35:13 -0700805 AC_DEFINE([JEMALLOC_PROF], [ ])
Jason Evans2dbecf12010-09-05 10:35:13 -0700806fi
807AC_SUBST([enable_prof])
Jason Evans2dbecf12010-09-05 10:35:13 -0700808
Jason Evans84cbbcb2009-12-29 00:09:15 -0800809dnl Enable thread-specific caching by default.
810AC_ARG_ENABLE([tcache],
811 [AS_HELP_STRING([--disable-tcache], [Disable per thread caches])],
812[if test "x$enable_tcache" = "xno" ; then
813 enable_tcache="0"
Jason Evansb7924f52009-06-23 19:01:18 -0700814else
Jason Evans84cbbcb2009-12-29 00:09:15 -0800815 enable_tcache="1"
Jason Evansb7924f52009-06-23 19:01:18 -0700816fi
817],
Jason Evans84cbbcb2009-12-29 00:09:15 -0800818[enable_tcache="1"]
Jason Evansb7924f52009-06-23 19:01:18 -0700819)
Jason Evans2dbecf12010-09-05 10:35:13 -0700820if test "x$enable_tcache" = "x1" ; then
821 AC_DEFINE([JEMALLOC_TCACHE], [ ])
822fi
823AC_SUBST([enable_tcache])
Jason Evansb7924f52009-06-23 19:01:18 -0700824
Jason Evans2e671ff2012-05-09 16:12:00 -0700825dnl Disable mremap() for huge realloc() by default.
826AC_ARG_ENABLE([mremap],
827 [AS_HELP_STRING([--enable-mremap], [Enable mremap(2) for huge realloc()])],
828[if test "x$enable_mremap" = "xno" ; then
829 enable_mremap="0"
830else
831 enable_mremap="1"
832fi
833],
834[enable_mremap="0"]
835)
836if test "x$enable_mremap" = "x1" ; then
837 JE_COMPILABLE([mremap(...MREMAP_FIXED...)], [
Jason Evansa4f124f2013-12-08 22:28:27 -0800838#define _GNU_SOURCE
Jason Evans2e671ff2012-05-09 16:12:00 -0700839#include <sys/mman.h>
840], [
841void *p = mremap((void *)0, 0, 0, MREMAP_MAYMOVE|MREMAP_FIXED, (void *)0);
842], [je_cv_mremap_fixed])
843 if test "x${je_cv_mremap_fixed}" = "xno" ; then
844 enable_mremap="0"
845 fi
846fi
847if test "x$enable_mremap" = "x1" ; then
848 AC_DEFINE([JEMALLOC_MREMAP], [ ])
849fi
850AC_SUBST([enable_mremap])
851
Jason Evans59ae2762012-04-16 17:52:27 -0700852dnl Enable VM deallocation via munmap() by default.
853AC_ARG_ENABLE([munmap],
854 [AS_HELP_STRING([--disable-munmap], [Disable VM deallocation via munmap(2)])],
855[if test "x$enable_munmap" = "xno" ; then
856 enable_munmap="0"
857else
858 enable_munmap="1"
859fi
860],
861[enable_munmap="${default_munmap}"]
862)
863if test "x$enable_munmap" = "x1" ; then
864 AC_DEFINE([JEMALLOC_MUNMAP], [ ])
865fi
866AC_SUBST([enable_munmap])
867
Jason Evansb7924f52009-06-23 19:01:18 -0700868dnl Do not enable allocation from DSS by default.
869AC_ARG_ENABLE([dss],
870 [AS_HELP_STRING([--enable-dss], [Enable allocation from DSS])],
871[if test "x$enable_dss" = "xno" ; then
872 enable_dss="0"
873else
874 enable_dss="1"
875fi
876],
877[enable_dss="0"]
878)
Mike Hommey83c324a2012-04-12 10:13:03 +0200879dnl Check whether the BSD/SUSv1 sbrk() exists. If not, disable DSS support.
880AC_CHECK_FUNC([sbrk], [have_sbrk="1"], [have_sbrk="0"])
881if test "x$have_sbrk" = "x1" ; then
Jason Evans66688532013-12-03 21:49:36 -0800882 if test "x$sbrk_deprecated" == "x1" ; then
883 AC_MSG_RESULT([Disabling dss allocation because sbrk is deprecated])
884 enable_dss="0"
885 else
886 AC_DEFINE([JEMALLOC_HAVE_SBRK], [ ])
887 fi
Mike Hommey83c324a2012-04-12 10:13:03 +0200888else
889 enable_dss="0"
890fi
891
Jason Evansb7924f52009-06-23 19:01:18 -0700892if test "x$enable_dss" = "x1" ; then
893 AC_DEFINE([JEMALLOC_DSS], [ ])
894fi
895AC_SUBST([enable_dss])
896
Jason Evans777c1912012-02-28 20:49:22 -0800897dnl Support the junk/zero filling option by default.
Jason Evansb7924f52009-06-23 19:01:18 -0700898AC_ARG_ENABLE([fill],
Jason Evans122449b2012-04-06 00:35:09 -0700899 [AS_HELP_STRING([--disable-fill],
900 [Disable support for junk/zero filling, quarantine, and redzones])],
Jason Evansb7924f52009-06-23 19:01:18 -0700901[if test "x$enable_fill" = "xno" ; then
902 enable_fill="0"
903else
904 enable_fill="1"
905fi
906],
Jason Evans777c1912012-02-28 20:49:22 -0800907[enable_fill="1"]
Jason Evansb7924f52009-06-23 19:01:18 -0700908)
909if test "x$enable_fill" = "x1" ; then
910 AC_DEFINE([JEMALLOC_FILL], [ ])
911fi
912AC_SUBST([enable_fill])
913
Jason Evansb1476112012-04-05 13:36:17 -0700914dnl Disable utrace(2)-based tracing by default.
915AC_ARG_ENABLE([utrace],
916 [AS_HELP_STRING([--enable-utrace], [Enable utrace(2)-based tracing])],
917[if test "x$enable_utrace" = "xno" ; then
918 enable_utrace="0"
919else
920 enable_utrace="1"
921fi
922],
923[enable_utrace="0"]
924)
925JE_COMPILABLE([utrace(2)], [
926#include <sys/types.h>
927#include <sys/param.h>
928#include <sys/time.h>
929#include <sys/uio.h>
930#include <sys/ktrace.h>
931], [
932 utrace((void *)0, 0);
933], [je_cv_utrace])
934if test "x${je_cv_utrace}" = "xno" ; then
935 enable_utrace="0"
936fi
937if test "x$enable_utrace" = "x1" ; then
938 AC_DEFINE([JEMALLOC_UTRACE], [ ])
939fi
940AC_SUBST([enable_utrace])
941
Jason Evans122449b2012-04-06 00:35:09 -0700942dnl Support Valgrind by default.
943AC_ARG_ENABLE([valgrind],
944 [AS_HELP_STRING([--disable-valgrind], [Disable support for Valgrind])],
945[if test "x$enable_valgrind" = "xno" ; then
946 enable_valgrind="0"
947else
948 enable_valgrind="1"
949fi
950],
951[enable_valgrind="1"]
952)
953if test "x$enable_valgrind" = "x1" ; then
954 JE_COMPILABLE([valgrind], [
955#include <valgrind/valgrind.h>
956#include <valgrind/memcheck.h>
957
Mike Hommey7bfecf42012-04-30 15:15:15 +0200958#if !defined(VALGRIND_RESIZEINPLACE_BLOCK)
Jason Evans122449b2012-04-06 00:35:09 -0700959# error "Incompatible Valgrind version"
960#endif
961], [], [je_cv_valgrind])
962 if test "x${je_cv_valgrind}" = "xno" ; then
963 enable_valgrind="0"
964 fi
965 if test "x$enable_valgrind" = "x1" ; then
966 AC_DEFINE([JEMALLOC_VALGRIND], [ ])
967 fi
968fi
969AC_SUBST([enable_valgrind])
970
Jason Evansb7924f52009-06-23 19:01:18 -0700971dnl Do not support the xmalloc option by default.
972AC_ARG_ENABLE([xmalloc],
973 [AS_HELP_STRING([--enable-xmalloc], [Support xmalloc option])],
974[if test "x$enable_xmalloc" = "xno" ; then
975 enable_xmalloc="0"
976else
977 enable_xmalloc="1"
978fi
979],
980[enable_xmalloc="0"]
981)
982if test "x$enable_xmalloc" = "x1" ; then
983 AC_DEFINE([JEMALLOC_XMALLOC], [ ])
984fi
985AC_SUBST([enable_xmalloc])
986
Jason Evans6684cac2012-03-05 12:15:36 -0800987AC_CACHE_CHECK([STATIC_PAGE_SHIFT],
988 [je_cv_static_page_shift],
989 AC_RUN_IFELSE([AC_LANG_PROGRAM(
Mike Hommeya19e87f2012-04-21 21:27:46 -0700990[[
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200991#include <strings.h>
Mike Hommeya19e87f2012-04-21 21:27:46 -0700992#ifdef _WIN32
993#include <windows.h>
994#else
Jason Evansb7924f52009-06-23 19:01:18 -0700995#include <unistd.h>
Mike Hommeya19e87f2012-04-21 21:27:46 -0700996#endif
997#include <stdio.h>
Jason Evans6684cac2012-03-05 12:15:36 -0800998]],
999[[
Garrett Cooper72c1e592012-12-02 17:57:28 -08001000 int result;
Jason Evansb7924f52009-06-23 19:01:18 -07001001 FILE *f;
1002
Mike Hommeya19e87f2012-04-21 21:27:46 -07001003#ifdef _WIN32
1004 SYSTEM_INFO si;
1005 GetSystemInfo(&si);
1006 result = si.dwPageSize;
1007#else
Jason Evansb7924f52009-06-23 19:01:18 -07001008 result = sysconf(_SC_PAGESIZE);
Mike Hommeya19e87f2012-04-21 21:27:46 -07001009#endif
Jason Evansb7924f52009-06-23 19:01:18 -07001010 if (result == -1) {
1011 return 1;
1012 }
Mike Hommeya19e87f2012-04-21 21:27:46 -07001013 result = ffsl(result) - 1;
1014
Jason Evansb7924f52009-06-23 19:01:18 -07001015 f = fopen("conftest.out", "w");
1016 if (f == NULL) {
1017 return 1;
1018 }
Garrett Cooper72c1e592012-12-02 17:57:28 -08001019 fprintf(f, "%d\n", result);
Jason Evans3cc1f1a2012-04-03 22:30:05 -07001020 fclose(f);
Jason Evansb7924f52009-06-23 19:01:18 -07001021
1022 return 0;
1023]])],
Jason Evans6684cac2012-03-05 12:15:36 -08001024 [je_cv_static_page_shift=`cat conftest.out`],
1025 [je_cv_static_page_shift=undefined]))
1026
1027if test "x$je_cv_static_page_shift" != "xundefined"; then
1028 AC_DEFINE_UNQUOTED([STATIC_PAGE_SHIFT], [$je_cv_static_page_shift])
1029else
1030 AC_MSG_ERROR([cannot determine value for STATIC_PAGE_SHIFT])
1031fi
Jason Evansb7924f52009-06-23 19:01:18 -07001032
1033dnl ============================================================================
1034dnl jemalloc configuration.
1035dnl
Jason Evansa40bc7a2010-03-02 13:01:16 -08001036
1037dnl Set VERSION if source directory has an embedded git repository.
Jason Evans955851f2011-03-31 22:38:51 -07001038if test -d "${srcroot}.git" ; then
Jason Evans79d660d2010-09-17 17:38:24 -07001039 git describe --long --abbrev=40 > ${srcroot}VERSION
Jason Evansa40bc7a2010-03-02 13:01:16 -08001040fi
Jason Evansb7924f52009-06-23 19:01:18 -07001041jemalloc_version=`cat ${srcroot}VERSION`
Jason Evansa40bc7a2010-03-02 13:01:16 -08001042jemalloc_version_major=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]1}'`
1043jemalloc_version_minor=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]2}'`
1044jemalloc_version_bugfix=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]3}'`
1045jemalloc_version_nrev=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]4}'`
1046jemalloc_version_gid=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]5}'`
Jason Evansb7924f52009-06-23 19:01:18 -07001047AC_SUBST([jemalloc_version])
Jason Evansa40bc7a2010-03-02 13:01:16 -08001048AC_SUBST([jemalloc_version_major])
1049AC_SUBST([jemalloc_version_minor])
1050AC_SUBST([jemalloc_version_bugfix])
1051AC_SUBST([jemalloc_version_nrev])
1052AC_SUBST([jemalloc_version_gid])
Jason Evansb7924f52009-06-23 19:01:18 -07001053
1054dnl ============================================================================
1055dnl Configure pthreads.
1056
Mike Hommeya19e87f2012-04-21 21:27:46 -07001057if test "x$abi" != "xpecoff" ; then
1058 AC_CHECK_HEADERS([pthread.h], , [AC_MSG_ERROR([pthread.h is missing])])
1059 dnl Some systems may embed pthreads functionality in libc; check for libpthread
1060 dnl first, but try libc too before failing.
1061 AC_CHECK_LIB([pthread], [pthread_create], [LIBS="$LIBS -lpthread"],
1062 [AC_SEARCH_LIBS([pthread_create], , ,
1063 AC_MSG_ERROR([libpthread is missing]))])
1064fi
Jason Evansb7924f52009-06-23 19:01:18 -07001065
1066CPPFLAGS="$CPPFLAGS -D_REENTRANT"
1067
Jason Evanscd9a1342012-03-21 18:33:03 -07001068dnl Check whether the BSD-specific _malloc_thread_cleanup() exists. If so, use
1069dnl it rather than pthreads TSD cleanup functions to support cleanup during
1070dnl thread exit, in order to avoid pthreads library recursion during
1071dnl bootstrapping.
Jason Evanscd9a1342012-03-21 18:33:03 -07001072AC_CHECK_FUNC([_malloc_thread_cleanup],
1073 [have__malloc_thread_cleanup="1"],
1074 [have__malloc_thread_cleanup="0"]
1075 )
1076if test "x$have__malloc_thread_cleanup" = "x1" ; then
1077 AC_DEFINE([JEMALLOC_MALLOC_THREAD_CLEANUP], [ ])
1078 force_tls="1"
1079fi
1080
Jason Evans41b6afb2012-02-02 22:04:57 -08001081dnl Check whether the BSD-specific _pthread_mutex_init_calloc_cb() exists. If
1082dnl so, mutex initialization causes allocation, and we need to implement this
1083dnl callback function in order to prevent recursive allocation.
1084AC_CHECK_FUNC([_pthread_mutex_init_calloc_cb],
1085 [have__pthread_mutex_init_calloc_cb="1"],
1086 [have__pthread_mutex_init_calloc_cb="0"]
1087 )
1088if test "x$have__pthread_mutex_init_calloc_cb" = "x1" ; then
1089 AC_DEFINE([JEMALLOC_MUTEX_INIT_CB])
1090fi
1091
Jason Evans0fee70d2012-02-13 12:36:11 -08001092dnl Disable lazy locking by default.
Jason Evansb7924f52009-06-23 19:01:18 -07001093AC_ARG_ENABLE([lazy_lock],
Jason Evans0fee70d2012-02-13 12:36:11 -08001094 [AS_HELP_STRING([--enable-lazy-lock],
1095 [Enable lazy locking (only lock when multi-threaded)])],
Jason Evansb7924f52009-06-23 19:01:18 -07001096[if test "x$enable_lazy_lock" = "xno" ; then
1097 enable_lazy_lock="0"
1098else
1099 enable_lazy_lock="1"
1100fi
1101],
Jason Evans0fee70d2012-02-13 12:36:11 -08001102[enable_lazy_lock="0"]
Jason Evansb7924f52009-06-23 19:01:18 -07001103)
Jason Evansfd4fcef2012-03-23 17:40:58 -07001104if test "x$enable_lazy_lock" = "x0" -a "x${force_lazy_lock}" = "x1" ; then
1105 AC_MSG_RESULT([Forcing lazy-lock to avoid allocator/threading bootstrap issues])
1106 enable_lazy_lock="1"
1107fi
Jason Evansb7924f52009-06-23 19:01:18 -07001108if test "x$enable_lazy_lock" = "x1" ; then
Mike Hommeya19e87f2012-04-21 21:27:46 -07001109 if test "x$abi" != "xpecoff" ; then
1110 AC_CHECK_HEADERS([dlfcn.h], , [AC_MSG_ERROR([dlfcn.h is missing])])
1111 AC_CHECK_FUNC([dlsym], [],
1112 [AC_CHECK_LIB([dl], [dlsym], [LIBS="$LIBS -ldl"],
1113 [AC_MSG_ERROR([libdl is missing])])
1114 ])
1115 fi
Jason Evansb7924f52009-06-23 19:01:18 -07001116 AC_DEFINE([JEMALLOC_LAZY_LOCK], [ ])
1117fi
1118AC_SUBST([enable_lazy_lock])
1119
Jason Evans78d815c2010-01-17 14:06:20 -08001120AC_ARG_ENABLE([tls],
1121 [AS_HELP_STRING([--disable-tls], [Disable thread-local storage (__thread keyword)])],
1122if test "x$enable_tls" = "xno" ; then
1123 enable_tls="0"
1124else
1125 enable_tls="1"
1126fi
1127,
1128enable_tls="1"
1129)
Jason Evanscd9a1342012-03-21 18:33:03 -07001130if test "x${enable_tls}" = "x0" -a "x${force_tls}" = "x1" ; then
1131 AC_MSG_RESULT([Forcing TLS to avoid allocator/threading bootstrap issues])
1132 enable_tls="1"
1133fi
Jason Evansb80581d2012-03-23 16:17:43 -07001134if test "x${enable_tls}" = "x1" -a "x${force_tls}" = "x0" ; then
1135 AC_MSG_RESULT([Forcing no TLS to avoid allocator/threading bootstrap issues])
1136 enable_tls="0"
1137fi
Jason Evans78d815c2010-01-17 14:06:20 -08001138if test "x${enable_tls}" = "x1" ; then
1139AC_MSG_CHECKING([for TLS])
Jason Evans6684cac2012-03-05 12:15:36 -08001140AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
Jason Evans78d815c2010-01-17 14:06:20 -08001141[[
1142 __thread int x;
1143]], [[
1144 x = 42;
1145
1146 return 0;
1147]])],
1148 AC_MSG_RESULT([yes]),
1149 AC_MSG_RESULT([no])
1150 enable_tls="0")
1151fi
Jason Evansb267d0f2010-08-13 15:42:29 -07001152AC_SUBST([enable_tls])
Jason Evanse24c7af2012-03-19 10:21:17 -07001153if test "x${enable_tls}" = "x1" ; then
1154 AC_DEFINE_UNQUOTED([JEMALLOC_TLS], [ ])
Jason Evanscd9a1342012-03-21 18:33:03 -07001155elif test "x${force_tls}" = "x1" ; then
1156 AC_MSG_ERROR([Failed to configure TLS, which is mandatory for correct function])
Jason Evans78d815c2010-01-17 14:06:20 -08001157fi
1158
Jason Evans2dbecf12010-09-05 10:35:13 -07001159dnl ============================================================================
Jason Evans84c8eef2011-03-16 10:30:13 -07001160dnl Check for ffsl(3), and fail if not found. This function exists on all
1161dnl platforms that jemalloc currently has a chance of functioning on without
1162dnl modification.
Jason Evans4c2faa82012-03-13 11:09:23 -07001163JE_COMPILABLE([a program using ffsl], [
Garrett Cooper72c1e592012-12-02 17:57:28 -08001164#include <stdio.h>
Jason Evans382132e2012-04-04 15:25:43 -07001165#include <strings.h>
Jason Evans4c2faa82012-03-13 11:09:23 -07001166#include <string.h>
1167], [
1168 {
1169 int rv = ffsl(0x08);
Garrett Cooper72c1e592012-12-02 17:57:28 -08001170 printf("%d\n", rv);
Jason Evans4c2faa82012-03-13 11:09:23 -07001171 }
1172], [je_cv_function_ffsl])
Jason Evans6684cac2012-03-05 12:15:36 -08001173if test "x${je_cv_function_ffsl}" != "xyes" ; then
1174 AC_MSG_ERROR([Cannot build without ffsl(3)])
1175fi
Jason Evans84c8eef2011-03-16 10:30:13 -07001176
1177dnl ============================================================================
Jason Evansb57d3ec2012-04-17 13:17:54 -07001178dnl Check for atomic(9) operations as provided on FreeBSD.
1179
1180JE_COMPILABLE([atomic(9)], [
1181#include <sys/types.h>
1182#include <machine/atomic.h>
1183#include <inttypes.h>
1184], [
1185 {
1186 uint32_t x32 = 0;
1187 volatile uint32_t *x32p = &x32;
1188 atomic_fetchadd_32(x32p, 1);
1189 }
1190 {
1191 unsigned long xlong = 0;
1192 volatile unsigned long *xlongp = &xlong;
1193 atomic_fetchadd_long(xlongp, 1);
1194 }
1195], [je_cv_atomic9])
1196if test "x${je_cv_atomic9}" = "xyes" ; then
1197 AC_DEFINE([JEMALLOC_ATOMIC9])
1198fi
1199
1200dnl ============================================================================
Jason Evans763baa62011-03-18 19:10:31 -07001201dnl Check for atomic(3) operations as provided on Darwin.
1202
1203JE_COMPILABLE([Darwin OSAtomic*()], [
1204#include <libkern/OSAtomic.h>
1205#include <inttypes.h>
1206], [
1207 {
1208 int32_t x32 = 0;
1209 volatile int32_t *x32p = &x32;
1210 OSAtomicAdd32(1, x32p);
1211 }
1212 {
1213 int64_t x64 = 0;
1214 volatile int64_t *x64p = &x64;
1215 OSAtomicAdd64(1, x64p);
1216 }
Jason Evans6684cac2012-03-05 12:15:36 -08001217], [je_cv_osatomic])
1218if test "x${je_cv_osatomic}" = "xyes" ; then
Jason Evanse24c7af2012-03-19 10:21:17 -07001219 AC_DEFINE([JEMALLOC_OSATOMIC], [ ])
Jason Evans763baa62011-03-18 19:10:31 -07001220fi
1221
1222dnl ============================================================================
Mike Hommeyc1e567b2012-03-26 17:03:41 +02001223dnl Check whether __sync_{add,sub}_and_fetch() are available despite
1224dnl __GCC_HAVE_SYNC_COMPARE_AND_SWAP_n macros being undefined.
1225
1226AC_DEFUN([JE_SYNC_COMPARE_AND_SWAP_CHECK],[
1227 AC_CACHE_CHECK([whether to force $1-bit __sync_{add,sub}_and_fetch()],
1228 [je_cv_sync_compare_and_swap_$2],
Mike Hommey2cfe6d62012-03-27 15:03:07 +02001229 [AC_LINK_IFELSE([AC_LANG_PROGRAM([
1230 #include <stdint.h>
1231 ],
1232 [
1233 #ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_$2
1234 {
1235 uint$1_t x$1 = 0;
1236 __sync_add_and_fetch(&x$1, 42);
1237 __sync_sub_and_fetch(&x$1, 1);
1238 }
1239 #else
1240 #error __GCC_HAVE_SYNC_COMPARE_AND_SWAP_$2 is defined, no need to force
1241 #endif
1242 ])],
Mike Hommeyc1e567b2012-03-26 17:03:41 +02001243 [je_cv_sync_compare_and_swap_$2=yes],
1244 [je_cv_sync_compare_and_swap_$2=no])])
1245
1246 if test "x${je_cv_sync_compare_and_swap_$2}" = "xyes" ; then
1247 AC_DEFINE([JE_FORCE_SYNC_COMPARE_AND_SWAP_$2], [ ])
1248 fi
1249])
1250
Jason Evansb57d3ec2012-04-17 13:17:54 -07001251if test "x${je_cv_atomic9}" != "xyes" -a "x${je_cv_osatomic}" != "xyes" ; then
Mike Hommeyc1e567b2012-03-26 17:03:41 +02001252 JE_SYNC_COMPARE_AND_SWAP_CHECK(32, 4)
1253 JE_SYNC_COMPARE_AND_SWAP_CHECK(64, 8)
1254fi
1255
1256dnl ============================================================================
Jason Evans893a0ed2011-03-18 19:30:18 -07001257dnl Check for spinlock(3) operations as provided on Darwin.
1258
1259JE_COMPILABLE([Darwin OSSpin*()], [
1260#include <libkern/OSAtomic.h>
1261#include <inttypes.h>
1262], [
1263 OSSpinLock lock = 0;
1264 OSSpinLockLock(&lock);
1265 OSSpinLockUnlock(&lock);
Jason Evans6684cac2012-03-05 12:15:36 -08001266], [je_cv_osspin])
1267if test "x${je_cv_osspin}" = "xyes" ; then
Jason Evanse24c7af2012-03-19 10:21:17 -07001268 AC_DEFINE([JEMALLOC_OSSPIN], [ ])
Jason Evans893a0ed2011-03-18 19:30:18 -07001269fi
1270
1271dnl ============================================================================
Jason Evans2dbecf12010-09-05 10:35:13 -07001272dnl Darwin-related configuration.
Jason Evans78d815c2010-01-17 14:06:20 -08001273
Mike Hommeyd0357f72012-11-26 18:52:41 +01001274AC_ARG_ENABLE([zone-allocator],
1275 [AS_HELP_STRING([--disable-zone-allocator],
1276 [Disable zone allocator for Darwin])],
1277[if test "x$enable_zone_allocator" = "xno" ; then
1278 enable_zone_allocator="0"
1279else
1280 enable_zone_allocator="1"
1281fi
1282],
1283[if test "x${abi}" = "xmacho"; then
1284 enable_zone_allocator="1"
1285fi
1286]
1287)
1288AC_SUBST([enable_zone_allocator])
1289
1290if test "x${enable_zone_allocator}" = "x1" ; then
1291 if test "x${abi}" != "xmacho"; then
1292 AC_MSG_ERROR([--enable-zone-allocator is only supported on Darwin])
1293 fi
Jason Evanse24c7af2012-03-19 10:21:17 -07001294 AC_DEFINE([JEMALLOC_IVSALLOC], [ ])
1295 AC_DEFINE([JEMALLOC_ZONE], [ ])
Jason Evans6109fe02010-02-10 10:37:56 -08001296
Jason Evans2dbecf12010-09-05 10:35:13 -07001297 dnl The szone version jumped from 3 to 6 between the OS X 10.5.x and 10.6
1298 dnl releases. malloc_zone_t and malloc_introspection_t have new fields in
1299 dnl 10.6, which is the only source-level indication of the change.
1300 AC_MSG_CHECKING([malloc zone version])
Mike Hommey154829d2012-03-20 18:01:38 +01001301 AC_DEFUN([JE_ZONE_PROGRAM],
1302 [AC_LANG_PROGRAM(
1303 [#include <malloc/malloc.h>],
1304 [static foo[[sizeof($1) $2 sizeof(void *) * $3 ? 1 : -1]]]
1305 )])
Jason Evans2dbecf12010-09-05 10:35:13 -07001306
Mike Hommey154829d2012-03-20 18:01:38 +01001307 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,14)],[JEMALLOC_ZONE_VERSION=3],[
1308 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,15)],[JEMALLOC_ZONE_VERSION=5],[
1309 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,16)],[
1310 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_introspection_t,==,9)],[JEMALLOC_ZONE_VERSION=6],[
1311 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_introspection_t,==,13)],[JEMALLOC_ZONE_VERSION=7],[JEMALLOC_ZONE_VERSION=]
1312 )])],[
1313 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,17)],[JEMALLOC_ZONE_VERSION=8],[
1314 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,>,17)],[JEMALLOC_ZONE_VERSION=9],[JEMALLOC_ZONE_VERSION=]
1315 )])])])])
1316 if test "x${JEMALLOC_ZONE_VERSION}" = "x"; then
1317 AC_MSG_RESULT([unsupported])
1318 AC_MSG_ERROR([Unsupported malloc zone version])
1319 fi
1320 if test "${JEMALLOC_ZONE_VERSION}" = 9; then
1321 JEMALLOC_ZONE_VERSION=8
1322 AC_MSG_RESULT([> 8])
1323 else
1324 AC_MSG_RESULT([$JEMALLOC_ZONE_VERSION])
1325 fi
1326 AC_DEFINE_UNQUOTED(JEMALLOC_ZONE_VERSION, [$JEMALLOC_ZONE_VERSION])
Jason Evansb27805b2010-02-10 18:15:53 -08001327fi
1328
Jason Evansb7924f52009-06-23 19:01:18 -07001329dnl ============================================================================
1330dnl Check for typedefs, structures, and compiler characteristics.
1331AC_HEADER_STDBOOL
1332
Jason Evans748dfac2013-12-06 18:27:33 -08001333dnl ============================================================================
1334dnl Define commands that generate output files.
1335
Jason Evans86abd0d2013-11-30 15:25:42 -08001336AC_CONFIG_COMMANDS([include/jemalloc/internal/private_namespace.h], [
1337 mkdir -p "${objroot}include/jemalloc/internal"
1338 "${srcdir}/include/jemalloc/internal/private_namespace.sh" "${srcdir}/include/jemalloc/internal/private_symbols.txt" > "${objroot}include/jemalloc/internal/private_namespace.h"
Jason Evansf234dc52014-01-16 17:38:01 -08001339], [
1340 srcdir="${srcdir}"
1341 objroot="${objroot}"
Jason Evans86abd0d2013-11-30 15:25:42 -08001342])
1343AC_CONFIG_COMMANDS([include/jemalloc/internal/private_unnamespace.h], [
1344 mkdir -p "${objroot}include/jemalloc/internal"
1345 "${srcdir}/include/jemalloc/internal/private_unnamespace.sh" "${srcdir}/include/jemalloc/internal/private_symbols.txt" > "${objroot}include/jemalloc/internal/private_unnamespace.h"
Jason Evansf234dc52014-01-16 17:38:01 -08001346], [
1347 srcdir="${srcdir}"
1348 objroot="${objroot}"
1349])
1350AC_CONFIG_COMMANDS([include/jemalloc/internal/public_symbols.txt], [
1351 f="${objroot}include/jemalloc/internal/public_symbols.txt"
1352 mkdir -p "${objroot}include/jemalloc/internal"
1353 cp /dev/null "${f}"
1354 for nm in `echo ${mangling_map} |tr ',' ' '` ; do
1355 n=`echo ${nm} |tr ':' ' ' |awk '{print $[]1}'`
1356 m=`echo ${nm} |tr ':' ' ' |awk '{print $[]2}'`
1357 echo "${n}:${m}" >> "${f}"
1358 dnl Remove name from public_syms so that it isn't redefined later.
1359 public_syms=`for sym in ${public_syms}; do echo "${sym}"; done |grep -v "^${n}\$" |tr '\n' ' '`
1360 done
1361 for sym in ${public_syms} ; do
1362 n="${sym}"
1363 m="${JEMALLOC_PREFIX}${sym}"
1364 echo "${n}:${m}" >> "${f}"
1365 done
1366], [
1367 srcdir="${srcdir}"
1368 objroot="${objroot}"
1369 mangling_map="${mangling_map}"
1370 public_syms="${public_syms}"
1371 JEMALLOC_PREFIX="${JEMALLOC_PREFIX}"
Jason Evans86abd0d2013-11-30 15:25:42 -08001372])
1373AC_CONFIG_COMMANDS([include/jemalloc/internal/public_namespace.h], [
1374 mkdir -p "${objroot}include/jemalloc/internal"
Jason Evansf234dc52014-01-16 17:38:01 -08001375 "${srcdir}/include/jemalloc/internal/public_namespace.sh" "${objroot}include/jemalloc/internal/public_symbols.txt" > "${objroot}include/jemalloc/internal/public_namespace.h"
1376], [
1377 srcdir="${srcdir}"
1378 objroot="${objroot}"
Jason Evans86abd0d2013-11-30 15:25:42 -08001379])
1380AC_CONFIG_COMMANDS([include/jemalloc/internal/public_unnamespace.h], [
1381 mkdir -p "${objroot}include/jemalloc/internal"
Jason Evansf234dc52014-01-16 17:38:01 -08001382 "${srcdir}/include/jemalloc/internal/public_unnamespace.sh" "${objroot}include/jemalloc/internal/public_symbols.txt" > "${objroot}include/jemalloc/internal/public_unnamespace.h"
1383], [
1384 srcdir="${srcdir}"
1385 objroot="${objroot}"
Jason Evans86abd0d2013-11-30 15:25:42 -08001386])
Jason Evansb1726102012-02-28 16:50:47 -08001387AC_CONFIG_COMMANDS([include/jemalloc/internal/size_classes.h], [
Jason Evans86abd0d2013-11-30 15:25:42 -08001388 mkdir -p "${objroot}include/jemalloc/internal"
Jason Evansb1726102012-02-28 16:50:47 -08001389 "${srcdir}/include/jemalloc/internal/size_classes.sh" > "${objroot}include/jemalloc/internal/size_classes.h"
Jason Evansf234dc52014-01-16 17:38:01 -08001390], [
1391 srcdir="${srcdir}"
1392 objroot="${objroot}"
Jason Evansb1726102012-02-28 16:50:47 -08001393])
Jason Evans86abd0d2013-11-30 15:25:42 -08001394AC_CONFIG_COMMANDS([include/jemalloc/jemalloc_protos_jet.h], [
1395 mkdir -p "${objroot}include/jemalloc"
1396 cat "${srcdir}/include/jemalloc/jemalloc_protos.h.in" | sed -e 's/@je_@/jet_/g' > "${objroot}include/jemalloc/jemalloc_protos_jet.h"
Jason Evansf234dc52014-01-16 17:38:01 -08001397], [
1398 srcdir="${srcdir}"
1399 objroot="${objroot}"
1400])
1401AC_CONFIG_COMMANDS([include/jemalloc/jemalloc_rename.h], [
1402 mkdir -p "${objroot}include/jemalloc"
1403 "${srcdir}/include/jemalloc/jemalloc_rename.sh" "${objroot}include/jemalloc/internal/public_symbols.txt" > "${objroot}include/jemalloc/jemalloc_rename.h"
1404], [
1405 srcdir="${srcdir}"
1406 objroot="${objroot}"
1407])
1408AC_CONFIG_COMMANDS([include/jemalloc/jemalloc_mangle.h], [
1409 mkdir -p "${objroot}include/jemalloc"
1410 "${srcdir}/include/jemalloc/jemalloc_mangle.sh" "${objroot}include/jemalloc/internal/public_symbols.txt" je_ > "${objroot}include/jemalloc/jemalloc_mangle.h"
1411], [
1412 srcdir="${srcdir}"
1413 objroot="${objroot}"
1414])
1415AC_CONFIG_COMMANDS([include/jemalloc/jemalloc_mangle_jet.h], [
1416 mkdir -p "${objroot}include/jemalloc"
1417 "${srcdir}/include/jemalloc/jemalloc_mangle.sh" "${objroot}include/jemalloc/internal/public_symbols.txt" jet_ > "${objroot}include/jemalloc/jemalloc_mangle_jet.h"
1418], [
1419 srcdir="${srcdir}"
1420 objroot="${objroot}"
Jason Evans86abd0d2013-11-30 15:25:42 -08001421])
1422AC_CONFIG_COMMANDS([include/jemalloc/jemalloc.h], [
1423 mkdir -p "${objroot}include/jemalloc"
1424 "${srcdir}/include/jemalloc/jemalloc.sh" "${objroot}" > "${objroot}include/jemalloc/jemalloc${install_suffix}.h"
Jason Evansf234dc52014-01-16 17:38:01 -08001425], [
1426 srcdir="${srcdir}"
1427 objroot="${objroot}"
1428 install_suffix="${install_suffix}"
Jason Evans86abd0d2013-11-30 15:25:42 -08001429])
Jason Evansb1726102012-02-28 16:50:47 -08001430
Jason Evansb7924f52009-06-23 19:01:18 -07001431dnl Process .in files.
Jason Evansb0fd5012010-01-17 01:49:20 -08001432AC_SUBST([cfghdrs_in])
1433AC_SUBST([cfghdrs_out])
Jason Evans0656ec02010-04-07 23:37:35 -07001434AC_CONFIG_HEADERS([$cfghdrs_tup])
Jason Evansb7924f52009-06-23 19:01:18 -07001435
1436dnl ============================================================================
1437dnl Generate outputs.
Jason Evans748dfac2013-12-06 18:27:33 -08001438
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +04001439AC_CONFIG_FILES([$cfgoutputs_tup config.stamp bin/jemalloc.sh])
Jason Evansb0fd5012010-01-17 01:49:20 -08001440AC_SUBST([cfgoutputs_in])
1441AC_SUBST([cfgoutputs_out])
Jason Evansb7924f52009-06-23 19:01:18 -07001442AC_OUTPUT
1443
1444dnl ============================================================================
1445dnl Print out the results of configuration.
1446AC_MSG_RESULT([===============================================================================])
Jason Evansf576c632011-11-01 22:27:41 -07001447AC_MSG_RESULT([jemalloc version : ${jemalloc_version}])
1448AC_MSG_RESULT([library revision : ${rev}])
Jason Evansb7924f52009-06-23 19:01:18 -07001449AC_MSG_RESULT([])
1450AC_MSG_RESULT([CC : ${CC}])
1451AC_MSG_RESULT([CPPFLAGS : ${CPPFLAGS}])
1452AC_MSG_RESULT([CFLAGS : ${CFLAGS}])
1453AC_MSG_RESULT([LDFLAGS : ${LDFLAGS}])
Jason Evans748dfac2013-12-06 18:27:33 -08001454AC_MSG_RESULT([EXTRA_LDFLAGS : ${EXTRA_LDFLAGS}])
Jason Evansb7924f52009-06-23 19:01:18 -07001455AC_MSG_RESULT([LIBS : ${LIBS}])
1456AC_MSG_RESULT([RPATH_EXTRA : ${RPATH_EXTRA}])
1457AC_MSG_RESULT([])
Jason Evansaee7fd22010-11-24 22:00:02 -08001458AC_MSG_RESULT([XSLTPROC : ${XSLTPROC}])
1459AC_MSG_RESULT([XSLROOT : ${XSLROOT}])
1460AC_MSG_RESULT([])
Jason Evansb7924f52009-06-23 19:01:18 -07001461AC_MSG_RESULT([PREFIX : ${PREFIX}])
1462AC_MSG_RESULT([BINDIR : ${BINDIR}])
Jason Evans662a0172009-07-01 19:24:31 -07001463AC_MSG_RESULT([INCLUDEDIR : ${INCLUDEDIR}])
1464AC_MSG_RESULT([LIBDIR : ${LIBDIR}])
Jason Evansb7924f52009-06-23 19:01:18 -07001465AC_MSG_RESULT([DATADIR : ${DATADIR}])
1466AC_MSG_RESULT([MANDIR : ${MANDIR}])
1467AC_MSG_RESULT([])
1468AC_MSG_RESULT([srcroot : ${srcroot}])
1469AC_MSG_RESULT([abs_srcroot : ${abs_srcroot}])
1470AC_MSG_RESULT([objroot : ${objroot}])
1471AC_MSG_RESULT([abs_objroot : ${abs_objroot}])
1472AC_MSG_RESULT([])
Jason Evans90895cf2009-12-29 00:09:15 -08001473AC_MSG_RESULT([JEMALLOC_PREFIX : ${JEMALLOC_PREFIX}])
Jason Evans746e77a2011-07-30 16:40:52 -07001474AC_MSG_RESULT([JEMALLOC_PRIVATE_NAMESPACE])
1475AC_MSG_RESULT([ : ${JEMALLOC_PRIVATE_NAMESPACE}])
Jason Evansb0fd5012010-01-17 01:49:20 -08001476AC_MSG_RESULT([install_suffix : ${install_suffix}])
Jason Evansb7924f52009-06-23 19:01:18 -07001477AC_MSG_RESULT([autogen : ${enable_autogen}])
Jason Evans7e77eaf2012-03-02 17:47:37 -08001478AC_MSG_RESULT([experimental : ${enable_experimental}])
Jason Evans355b4382010-09-20 19:20:48 -07001479AC_MSG_RESULT([cc-silence : ${enable_cc_silence}])
Jason Evansb7924f52009-06-23 19:01:18 -07001480AC_MSG_RESULT([debug : ${enable_debug}])
Jason Evans748dfac2013-12-06 18:27:33 -08001481AC_MSG_RESULT([code-coverage : ${enable_code_coverage}])
Jason Evansb7924f52009-06-23 19:01:18 -07001482AC_MSG_RESULT([stats : ${enable_stats}])
Jason Evans6109fe02010-02-10 10:37:56 -08001483AC_MSG_RESULT([prof : ${enable_prof}])
1484AC_MSG_RESULT([prof-libunwind : ${enable_prof_libunwind}])
Jason Evans77f350b2011-03-15 22:23:12 -07001485AC_MSG_RESULT([prof-libgcc : ${enable_prof_libgcc}])
1486AC_MSG_RESULT([prof-gcc : ${enable_prof_gcc}])
Jason Evans84cbbcb2009-12-29 00:09:15 -08001487AC_MSG_RESULT([tcache : ${enable_tcache}])
Jason Evansb7924f52009-06-23 19:01:18 -07001488AC_MSG_RESULT([fill : ${enable_fill}])
Jason Evansb1476112012-04-05 13:36:17 -07001489AC_MSG_RESULT([utrace : ${enable_utrace}])
Jason Evans122449b2012-04-06 00:35:09 -07001490AC_MSG_RESULT([valgrind : ${enable_valgrind}])
1491AC_MSG_RESULT([xmalloc : ${enable_xmalloc}])
Jason Evans2e671ff2012-05-09 16:12:00 -07001492AC_MSG_RESULT([mremap : ${enable_mremap}])
Jason Evans59ae2762012-04-16 17:52:27 -07001493AC_MSG_RESULT([munmap : ${enable_munmap}])
Jason Evansb7924f52009-06-23 19:01:18 -07001494AC_MSG_RESULT([dss : ${enable_dss}])
Jason Evansb7924f52009-06-23 19:01:18 -07001495AC_MSG_RESULT([lazy_lock : ${enable_lazy_lock}])
Jason Evans2dbecf12010-09-05 10:35:13 -07001496AC_MSG_RESULT([tls : ${enable_tls}])
Jason Evansb7924f52009-06-23 19:01:18 -07001497AC_MSG_RESULT([===============================================================================])