blob: dc817e1c496670985f691500ecce8cd4cd15b576 [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.
Jason Evans9790b962014-04-14 22:32:31 -070047rev=2
Jason Evansf576c632011-11-01 22:27:41 -070048AC_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 Evansdf3f2702014-03-30 16:27:08 -0700153AC_C_BIGENDIAN([ac_cv_big_endian=1], [ac_cv_big_endian=0])
154if test "x${ac_cv_big_endian}" = "x1" ; then
155 AC_DEFINE_UNQUOTED([JEMALLOC_BIG_ENDIAN], [ ])
156fi
157
Jason Evansb7924f52009-06-23 19:01:18 -0700158AC_CHECK_SIZEOF([void *])
159if test "x${ac_cv_sizeof_void_p}" = "x8" ; then
Jason Evans94ad2b52009-12-29 00:09:15 -0800160 LG_SIZEOF_PTR=3
Jason Evansb7924f52009-06-23 19:01:18 -0700161elif test "x${ac_cv_sizeof_void_p}" = "x4" ; then
Jason Evans94ad2b52009-12-29 00:09:15 -0800162 LG_SIZEOF_PTR=2
Jason Evansb7924f52009-06-23 19:01:18 -0700163else
164 AC_MSG_ERROR([Unsupported pointer size: ${ac_cv_sizeof_void_p}])
165fi
Jason Evans94ad2b52009-12-29 00:09:15 -0800166AC_DEFINE_UNQUOTED([LG_SIZEOF_PTR], [$LG_SIZEOF_PTR])
167
168AC_CHECK_SIZEOF([int])
169if test "x${ac_cv_sizeof_int}" = "x8" ; then
170 LG_SIZEOF_INT=3
171elif test "x${ac_cv_sizeof_int}" = "x4" ; then
172 LG_SIZEOF_INT=2
173else
174 AC_MSG_ERROR([Unsupported int size: ${ac_cv_sizeof_int}])
175fi
176AC_DEFINE_UNQUOTED([LG_SIZEOF_INT], [$LG_SIZEOF_INT])
Jason Evansb7924f52009-06-23 19:01:18 -0700177
Jason Evans84c8eef2011-03-16 10:30:13 -0700178AC_CHECK_SIZEOF([long])
179if test "x${ac_cv_sizeof_long}" = "x8" ; then
180 LG_SIZEOF_LONG=3
181elif test "x${ac_cv_sizeof_long}" = "x4" ; then
182 LG_SIZEOF_LONG=2
183else
184 AC_MSG_ERROR([Unsupported long size: ${ac_cv_sizeof_long}])
185fi
186AC_DEFINE_UNQUOTED([LG_SIZEOF_LONG], [$LG_SIZEOF_LONG])
187
Jason Evansd81e4bd2012-03-06 14:57:45 -0800188AC_CHECK_SIZEOF([intmax_t])
189if test "x${ac_cv_sizeof_intmax_t}" = "x16" ; then
190 LG_SIZEOF_INTMAX_T=4
191elif test "x${ac_cv_sizeof_intmax_t}" = "x8" ; then
192 LG_SIZEOF_INTMAX_T=3
193elif test "x${ac_cv_sizeof_intmax_t}" = "x4" ; then
194 LG_SIZEOF_INTMAX_T=2
195else
Mike Hommey14103d32012-04-20 08:38:39 +0200196 AC_MSG_ERROR([Unsupported intmax_t size: ${ac_cv_sizeof_intmax_t}])
Jason Evansd81e4bd2012-03-06 14:57:45 -0800197fi
198AC_DEFINE_UNQUOTED([LG_SIZEOF_INTMAX_T], [$LG_SIZEOF_INTMAX_T])
199
Jason Evansb7924f52009-06-23 19:01:18 -0700200AC_CANONICAL_HOST
201dnl CPU-specific settings.
202CPU_SPINWAIT=""
203case "${host_cpu}" in
204 i[[345]]86)
205 ;;
Jason Evanscb657e32014-02-25 11:21:41 -0800206 i686|x86_64)
207 JE_COMPILABLE([pause instruction], [],
208 [[__asm__ volatile("pause"); return 0;]],
209 [je_cv_pause])
210 if test "x${je_cv_pause}" = "xyes" ; then
Jason Evansf3340ca2009-06-30 16:17:05 -0700211 CPU_SPINWAIT='__asm__ volatile("pause")'
212 fi
Jason Evanscb657e32014-02-25 11:21:41 -0800213 dnl emmintrin.h fails to compile unless MMX, SSE, and SSE2 are
214 dnl supported.
215 JE_COMPILABLE([SSE2 intrinsics], [
216#include <emmintrin.h>
217], [], [je_cv_sse2])
218 if test "x${je_cv_sse2}" = "xyes" ; then
219 AC_DEFINE_UNQUOTED([HAVE_SSE2], [ ])
Jason Evansf3340ca2009-06-30 16:17:05 -0700220 fi
Jason Evans80061b62013-12-09 13:21:08 -0800221 ;;
222 powerpc)
223 AC_DEFINE_UNQUOTED([HAVE_ALTIVEC], [ ])
Jason Evansb7924f52009-06-23 19:01:18 -0700224 ;;
225 *)
226 ;;
227esac
228AC_DEFINE_UNQUOTED([CPU_SPINWAIT], [$CPU_SPINWAIT])
229
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400230LD_PRELOAD_VAR="LD_PRELOAD"
Jason Evansf576c632011-11-01 22:27:41 -0700231so="so"
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200232importlib="${so}"
Mike Hommey7cdea392012-04-30 12:38:27 +0200233o="$ac_objext"
Mike Hommey5bee66d2012-04-16 16:30:24 +0200234a="a"
Mike Hommey7cdea392012-04-30 12:38:27 +0200235exe="$ac_exeext"
Mike Hommeya19e87f2012-04-21 21:27:46 -0700236libprefix="lib"
Mike Hommeyfa08da72012-04-16 16:30:25 +0200237DSO_LDFLAGS='-shared -Wl,-soname,$(@F)'
238RPATH='-Wl,-rpath,$(1)'
Mike Hommey7cdea392012-04-30 12:38:27 +0200239SOREV="${so}.${rev}"
Mike Hommey188da7c2012-04-18 18:29:41 +0200240PIC_CFLAGS='-fPIC -DPIC'
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200241CTARGET='-o $@'
242LDTARGET='-o $@'
243EXTRA_LDFLAGS=
Jason Evans80ddf492013-08-20 11:48:19 +0100244ARFLAGS='crus'
245AROUT=' $@'
Mike Hommey79c4bca2012-05-02 21:30:51 +0200246CC_MM=1
Jason Evans7372b152012-02-10 20:22:09 -0800247
Jory A. Prattad505e02013-08-11 09:44:59 -0500248AN_MAKEVAR([AR], [AC_PROG_AR])
249AN_PROGRAM([ar], [AC_PROG_AR])
250AC_DEFUN([AC_PROG_AR], [AC_CHECK_TOOL(AR, ar, :)])
251AC_PROG_AR
252
Jason Evansb7924f52009-06-23 19:01:18 -0700253dnl Platform-specific settings. abi and RPATH can probably be determined
254dnl programmatically, but doing so is error-prone, which makes it generally
255dnl not worth the trouble.
256dnl
257dnl Define cpp macros in CPPFLAGS, rather than doing AC_DEFINE(macro), since the
258dnl definitions need to be seen before any headers are included, which is a pain
259dnl to make happen otherwise.
Jason Evans59ae2762012-04-16 17:52:27 -0700260default_munmap="1"
Jason Evans247d1242012-10-09 16:20:10 -0700261JEMALLOC_USABLE_SIZE_CONST="const"
Jason Evansb7924f52009-06-23 19:01:18 -0700262case "${host}" in
263 *-*-darwin*)
Mike Hommeya6770a72012-05-03 14:12:49 +0200264 CFLAGS="$CFLAGS"
Jason Evansb7924f52009-06-23 19:01:18 -0700265 abi="macho"
Jason Evanse24c7af2012-03-19 10:21:17 -0700266 AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ])
Jason Evansb7924f52009-06-23 19:01:18 -0700267 RPATH=""
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400268 LD_PRELOAD_VAR="DYLD_INSERT_LIBRARIES"
Jason Evansf576c632011-11-01 22:27:41 -0700269 so="dylib"
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200270 importlib="${so}"
Jason Evansb80581d2012-03-23 16:17:43 -0700271 force_tls="0"
Mike Hommeyfa08da72012-04-16 16:30:25 +0200272 DSO_LDFLAGS='-shared -Wl,-dylib_install_name,$(@F)'
Mike Hommey7cdea392012-04-30 12:38:27 +0200273 SOREV="${rev}.${so}"
Jason Evans66688532013-12-03 21:49:36 -0800274 sbrk_deprecated="1"
Jason Evansb7924f52009-06-23 19:01:18 -0700275 ;;
276 *-*-freebsd*)
277 CFLAGS="$CFLAGS"
278 abi="elf"
Jason Evanse24c7af2012-03-19 10:21:17 -0700279 AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ])
Jason Evansfd4fcef2012-03-23 17:40:58 -0700280 force_lazy_lock="1"
Jason Evansb7924f52009-06-23 19:01:18 -0700281 ;;
282 *-*-linux*)
283 CFLAGS="$CFLAGS"
284 CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
285 abi="elf"
Garrett Cooper13e4e242012-12-02 17:58:40 -0800286 AC_DEFINE([JEMALLOC_HAS_ALLOCA_H])
Jason Evanse24c7af2012-03-19 10:21:17 -0700287 AC_DEFINE([JEMALLOC_PURGE_MADVISE_DONTNEED], [ ])
Jason Evans02b23122012-04-05 11:06:23 -0700288 AC_DEFINE([JEMALLOC_THREADED_INIT], [ ])
Jason Evans247d1242012-10-09 16:20:10 -0700289 JEMALLOC_USABLE_SIZE_CONST=""
Jason Evans59ae2762012-04-16 17:52:27 -0700290 default_munmap="0"
Jason Evansb7924f52009-06-23 19:01:18 -0700291 ;;
292 *-*-netbsd*)
293 AC_MSG_CHECKING([ABI])
294 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
295[[#ifdef __ELF__
296/* ELF */
297#else
298#error aout
299#endif
300]])],
301 [CFLAGS="$CFLAGS"; abi="elf"],
302 [abi="aout"])
303 AC_MSG_RESULT([$abi])
Jason Evanse24c7af2012-03-19 10:21:17 -0700304 AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ])
Jason Evansb7924f52009-06-23 19:01:18 -0700305 ;;
306 *-*-solaris2*)
307 CFLAGS="$CFLAGS"
308 abi="elf"
George Koladdd6bd42014-02-12 23:05:45 +0000309 AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ])
Mike Hommeyfa08da72012-04-16 16:30:25 +0200310 RPATH='-Wl,-R,$(1)'
Jason Evansb7924f52009-06-23 19:01:18 -0700311 dnl Solaris needs this for sigwait().
312 CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
313 LIBS="$LIBS -lposix4 -lsocket -lnsl"
314 ;;
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400315 *-ibm-aix*)
316 if "$LG_SIZEOF_PTR" = "8"; then
317 dnl 64bit AIX
318 LD_PRELOAD_VAR="LDR_PRELOAD64"
319 else
320 dnl 32bit AIX
321 LD_PRELOAD_VAR="LDR_PRELOAD"
322 fi
323 abi="xcoff"
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400324 ;;
Mike Hommeya19e87f2012-04-21 21:27:46 -0700325 *-*-mingw*)
326 abi="pecoff"
327 force_tls="0"
328 RPATH=""
329 so="dll"
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200330 if test "x$je_cv_msvc" = "xyes" ; then
331 importlib="lib"
332 DSO_LDFLAGS="-LD"
333 EXTRA_LDFLAGS="-link -DEBUG"
334 CTARGET='-Fo$@'
335 LDTARGET='-Fe$@'
Jory A. Prattad505e02013-08-11 09:44:59 -0500336 AR='lib'
337 ARFLAGS='-nologo -out:'
Jason Evans80ddf492013-08-20 11:48:19 +0100338 AROUT='$@'
Mike Hommey79c4bca2012-05-02 21:30:51 +0200339 CC_MM=
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200340 else
341 importlib="${so}"
342 DSO_LDFLAGS="-shared"
343 fi
Mike Hommeya19e87f2012-04-21 21:27:46 -0700344 a="lib"
345 libprefix=""
Mike Hommey7cdea392012-04-30 12:38:27 +0200346 SOREV="${so}"
Mike Hommeya19e87f2012-04-21 21:27:46 -0700347 PIC_CFLAGS=""
348 ;;
Jason Evansb7924f52009-06-23 19:01:18 -0700349 *)
350 AC_MSG_RESULT([Unsupported operating system: ${host}])
351 abi="elf"
Jason Evansb7924f52009-06-23 19:01:18 -0700352 ;;
353esac
Jason Evans247d1242012-10-09 16:20:10 -0700354AC_DEFINE_UNQUOTED([JEMALLOC_USABLE_SIZE_CONST], [$JEMALLOC_USABLE_SIZE_CONST])
Jason Evansb7924f52009-06-23 19:01:18 -0700355AC_SUBST([abi])
356AC_SUBST([RPATH])
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +0400357AC_SUBST([LD_PRELOAD_VAR])
Jason Evansf576c632011-11-01 22:27:41 -0700358AC_SUBST([so])
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200359AC_SUBST([importlib])
Mike Hommey5bee66d2012-04-16 16:30:24 +0200360AC_SUBST([o])
361AC_SUBST([a])
362AC_SUBST([exe])
Mike Hommeya19e87f2012-04-21 21:27:46 -0700363AC_SUBST([libprefix])
Mike Hommeyfa08da72012-04-16 16:30:25 +0200364AC_SUBST([DSO_LDFLAGS])
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200365AC_SUBST([EXTRA_LDFLAGS])
Mike Hommey85221d52012-04-18 18:29:40 +0200366AC_SUBST([SOREV])
Mike Hommey188da7c2012-04-18 18:29:41 +0200367AC_SUBST([PIC_CFLAGS])
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200368AC_SUBST([CTARGET])
369AC_SUBST([LDTARGET])
370AC_SUBST([MKLIB])
Jason Evans80ddf492013-08-20 11:48:19 +0100371AC_SUBST([ARFLAGS])
372AC_SUBST([AROUT])
Mike Hommey79c4bca2012-05-02 21:30:51 +0200373AC_SUBST([CC_MM])
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200374
Jason Evansfa5d2452011-03-15 10:25:59 -0700375JE_COMPILABLE([__attribute__ syntax],
376 [static __attribute__((unused)) void foo(void){}],
377 [],
Jason Evans6684cac2012-03-05 12:15:36 -0800378 [je_cv_attribute])
379if test "x${je_cv_attribute}" = "xyes" ; then
Jason Evansfa5d2452011-03-15 10:25:59 -0700380 AC_DEFINE([JEMALLOC_HAVE_ATTR], [ ])
381 if test "x${GCC}" = "xyes" -a "x${abi}" = "xelf"; then
382 JE_CFLAGS_APPEND([-fvisibility=hidden])
383 fi
384fi
Jason Evans3cc1f1a2012-04-03 22:30:05 -0700385dnl Check for tls_model attribute support (clang 3.0 still lacks support).
386SAVED_CFLAGS="${CFLAGS}"
387JE_CFLAGS_APPEND([-Werror])
388JE_COMPILABLE([tls_model attribute], [],
389 [static __thread int
390 __attribute__((tls_model("initial-exec"))) foo;
391 foo = 0;],
392 [je_cv_tls_model])
393CFLAGS="${SAVED_CFLAGS}"
394if test "x${je_cv_tls_model}" = "xyes" ; then
395 AC_DEFINE([JEMALLOC_TLS_MODEL],
396 [__attribute__((tls_model("initial-exec")))])
397else
398 AC_DEFINE([JEMALLOC_TLS_MODEL], [ ])
399fi
Jason Evansfa5d2452011-03-15 10:25:59 -0700400
Jason Evansb7924f52009-06-23 19:01:18 -0700401dnl Support optional additions to rpath.
402AC_ARG_WITH([rpath],
Jason Evans90895cf2009-12-29 00:09:15 -0800403 [AS_HELP_STRING([--with-rpath=<rpath>], [Colon-separated rpath (ELF systems only)])],
Jason Evansb7924f52009-06-23 19:01:18 -0700404if test "x$with_rpath" = "xno" ; then
405 RPATH_EXTRA=
406else
407 RPATH_EXTRA="`echo $with_rpath | tr \":\" \" \"`"
408fi,
409 RPATH_EXTRA=
410)
411AC_SUBST([RPATH_EXTRA])
412
413dnl Disable rules that do automatic regeneration of configure output by default.
414AC_ARG_ENABLE([autogen],
Jason Evans78d815c2010-01-17 14:06:20 -0800415 [AS_HELP_STRING([--enable-autogen], [Automatically regenerate configure output])],
Jason Evansb7924f52009-06-23 19:01:18 -0700416if test "x$enable_autogen" = "xno" ; then
417 enable_autogen="0"
418else
419 enable_autogen="1"
420fi
421,
422enable_autogen="0"
423)
424AC_SUBST([enable_autogen])
425
426AC_PROG_INSTALL
427AC_PROG_RANLIB
Jason Evans7329a4f2013-01-22 10:53:29 -0800428AC_PATH_PROG([LD], [ld], [false], [$PATH])
429AC_PATH_PROG([AUTOCONF], [autoconf], [false], [$PATH])
Jason Evansb7924f52009-06-23 19:01:18 -0700430
Jason Evansd82a5e62013-12-12 22:35:52 -0800431public_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 -0800432
433dnl Check for allocator-related functions that should be wrapped.
434AC_CHECK_FUNC([memalign],
Jason Evanse24c7af2012-03-19 10:21:17 -0700435 [AC_DEFINE([JEMALLOC_OVERRIDE_MEMALIGN], [ ])
Jason Evans7e77eaf2012-03-02 17:47:37 -0800436 public_syms="${public_syms} memalign"])
437AC_CHECK_FUNC([valloc],
Jason Evanse24c7af2012-03-19 10:21:17 -0700438 [AC_DEFINE([JEMALLOC_OVERRIDE_VALLOC], [ ])
Jason Evans7e77eaf2012-03-02 17:47:37 -0800439 public_syms="${public_syms} valloc"])
440
Jason Evans748dfac2013-12-06 18:27:33 -0800441dnl Do not compute test code coverage by default.
442GCOV_FLAGS=
443AC_ARG_ENABLE([code-coverage],
444 [AS_HELP_STRING([--enable-code-coverage],
445 [Enable code coverage])],
446[if test "x$enable_code_coverage" = "xno" ; then
447 enable_code_coverage="0"
448else
449 enable_code_coverage="1"
450fi
451],
452[enable_code_coverage="0"]
453)
454if test "x$enable_code_coverage" = "x1" ; then
455 deoptimize="no"
456 echo "$CFLAGS $EXTRA_CFLAGS" | grep '\-O' >/dev/null || deoptimize="yes"
457 if test "x${deoptimize}" = "xyes" ; then
458 JE_CFLAGS_APPEND([-O0])
459 fi
460 JE_CFLAGS_APPEND([-fprofile-arcs -ftest-coverage])
461 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -fprofile-arcs -ftest-coverage"
462 AC_DEFINE([JEMALLOC_CODE_COVERAGE], [ ])
463fi
464AC_SUBST([enable_code_coverage])
465
Jason Evans0a5489e2012-03-01 17:19:20 -0800466dnl Perform no name mangling by default.
467AC_ARG_WITH([mangling],
468 [AS_HELP_STRING([--with-mangling=<map>], [Mangle symbols in <map>])],
469 [mangling_map="$with_mangling"], [mangling_map=""])
Jason Evans0a5489e2012-03-01 17:19:20 -0800470
Jason Evans90895cf2009-12-29 00:09:15 -0800471dnl Do not prefix public APIs by default.
472AC_ARG_WITH([jemalloc_prefix],
473 [AS_HELP_STRING([--with-jemalloc-prefix=<prefix>], [Prefix to prepend to all public APIs])],
Jason Evansb0fd5012010-01-17 01:49:20 -0800474 [JEMALLOC_PREFIX="$with_jemalloc_prefix"],
Mike Hommey7cdea392012-04-30 12:38:27 +0200475 [if test "x$abi" != "xmacho" -a "x$abi" != "xpecoff"; then
Jason Evans2dbecf12010-09-05 10:35:13 -0700476 JEMALLOC_PREFIX=""
477else
478 JEMALLOC_PREFIX="je_"
479fi]
Jason Evans90895cf2009-12-29 00:09:15 -0800480)
481if test "x$JEMALLOC_PREFIX" != "x" ; then
Jason Evanse7339702010-10-23 18:37:06 -0700482 JEMALLOC_CPREFIX=`echo ${JEMALLOC_PREFIX} | tr "a-z" "A-Z"`
483 AC_DEFINE_UNQUOTED([JEMALLOC_PREFIX], ["$JEMALLOC_PREFIX"])
484 AC_DEFINE_UNQUOTED([JEMALLOC_CPREFIX], ["$JEMALLOC_CPREFIX"])
Jason Evans90895cf2009-12-29 00:09:15 -0800485fi
486
Mike Hommey99066602012-11-19 10:55:26 +0100487AC_ARG_WITH([export],
488 [AS_HELP_STRING([--without-export], [disable exporting jemalloc public APIs])],
489 [if test "x$with_export" = "xno"; then
Jason Evans2625c892013-01-22 16:46:27 -0800490 AC_DEFINE([JEMALLOC_EXPORT],[])
Mike Hommey99066602012-11-19 10:55:26 +0100491fi]
492)
493
Jason Evans86abd0d2013-11-30 15:25:42 -0800494dnl Mangle library-private APIs.
Jason Evans746e77a2011-07-30 16:40:52 -0700495AC_ARG_WITH([private_namespace],
496 [AS_HELP_STRING([--with-private-namespace=<prefix>], [Prefix to prepend to all library-private APIs])],
Jason Evans86abd0d2013-11-30 15:25:42 -0800497 [JEMALLOC_PRIVATE_NAMESPACE="${with_private_namespace}je_"],
498 [JEMALLOC_PRIVATE_NAMESPACE="je_"]
Jason Evans746e77a2011-07-30 16:40:52 -0700499)
Jason Evans86abd0d2013-11-30 15:25:42 -0800500AC_DEFINE_UNQUOTED([JEMALLOC_PRIVATE_NAMESPACE], [$JEMALLOC_PRIVATE_NAMESPACE])
501private_namespace="$JEMALLOC_PRIVATE_NAMESPACE"
502AC_SUBST([private_namespace])
Jason Evans746e77a2011-07-30 16:40:52 -0700503
Jason Evansb0fd5012010-01-17 01:49:20 -0800504dnl Do not add suffix to installed files by default.
505AC_ARG_WITH([install_suffix],
506 [AS_HELP_STRING([--with-install-suffix=<suffix>], [Suffix to append to all installed files])],
507 [INSTALL_SUFFIX="$with_install_suffix"],
508 [INSTALL_SUFFIX=]
509)
510install_suffix="$INSTALL_SUFFIX"
511AC_SUBST([install_suffix])
512
Jason Evans86abd0d2013-11-30 15:25:42 -0800513dnl Substitute @je_@ in jemalloc_protos.h.in, primarily to make generation of
514dnl jemalloc_protos_jet.h easy.
515je_="je_"
516AC_SUBST([je_])
517
Jason Evansaee7fd22010-11-24 22:00:02 -0800518cfgoutputs_in="${srcroot}Makefile.in"
519cfgoutputs_in="${cfgoutputs_in} ${srcroot}doc/html.xsl.in"
520cfgoutputs_in="${cfgoutputs_in} ${srcroot}doc/manpages.xsl.in"
521cfgoutputs_in="${cfgoutputs_in} ${srcroot}doc/jemalloc.xml.in"
Jason Evans86abd0d2013-11-30 15:25:42 -0800522cfgoutputs_in="${cfgoutputs_in} ${srcroot}include/jemalloc/jemalloc_macros.h.in"
523cfgoutputs_in="${cfgoutputs_in} ${srcroot}include/jemalloc/jemalloc_protos.h.in"
Jason Evans0656ec02010-04-07 23:37:35 -0700524cfgoutputs_in="${cfgoutputs_in} ${srcroot}include/jemalloc/internal/jemalloc_internal.h.in"
Jason Evans86abd0d2013-11-30 15:25:42 -0800525cfgoutputs_in="${cfgoutputs_in} ${srcroot}test/test.sh.in"
526cfgoutputs_in="${cfgoutputs_in} ${srcroot}test/include/test/jemalloc_test.h.in"
Jason Evansb0fd5012010-01-17 01:49:20 -0800527
Jason Evansaee7fd22010-11-24 22:00:02 -0800528cfgoutputs_out="Makefile"
529cfgoutputs_out="${cfgoutputs_out} doc/html.xsl"
530cfgoutputs_out="${cfgoutputs_out} doc/manpages.xsl"
Jason Evans86abd0d2013-11-30 15:25:42 -0800531cfgoutputs_out="${cfgoutputs_out} doc/jemalloc.xml"
532cfgoutputs_out="${cfgoutputs_out} include/jemalloc/jemalloc_macros.h"
533cfgoutputs_out="${cfgoutputs_out} include/jemalloc/jemalloc_protos.h"
Jason Evans376b1522010-02-11 14:45:59 -0800534cfgoutputs_out="${cfgoutputs_out} include/jemalloc/internal/jemalloc_internal.h"
Jason Evans86abd0d2013-11-30 15:25:42 -0800535cfgoutputs_out="${cfgoutputs_out} test/test.sh"
536cfgoutputs_out="${cfgoutputs_out} test/include/test/jemalloc_test.h"
Jason Evansb0fd5012010-01-17 01:49:20 -0800537
Jason Evansaee7fd22010-11-24 22:00:02 -0800538cfgoutputs_tup="Makefile"
539cfgoutputs_tup="${cfgoutputs_tup} doc/html.xsl:doc/html.xsl.in"
540cfgoutputs_tup="${cfgoutputs_tup} doc/manpages.xsl:doc/manpages.xsl.in"
Jason Evans86abd0d2013-11-30 15:25:42 -0800541cfgoutputs_tup="${cfgoutputs_tup} doc/jemalloc.xml:doc/jemalloc.xml.in"
542cfgoutputs_tup="${cfgoutputs_tup} include/jemalloc/jemalloc_macros.h:include/jemalloc/jemalloc_macros.h.in"
543cfgoutputs_tup="${cfgoutputs_tup} include/jemalloc/jemalloc_protos.h:include/jemalloc/jemalloc_protos.h.in"
Jason Evans376b1522010-02-11 14:45:59 -0800544cfgoutputs_tup="${cfgoutputs_tup} include/jemalloc/internal/jemalloc_internal.h"
Jason Evans86abd0d2013-11-30 15:25:42 -0800545cfgoutputs_tup="${cfgoutputs_tup} test/test.sh:test/test.sh.in"
546cfgoutputs_tup="${cfgoutputs_tup} test/include/test/jemalloc_test.h:test/include/test/jemalloc_test.h.in"
Jason Evansb0fd5012010-01-17 01:49:20 -0800547
Jason Evans0656ec02010-04-07 23:37:35 -0700548cfghdrs_in="${srcroot}include/jemalloc/jemalloc_defs.h.in"
Jason Evans86abd0d2013-11-30 15:25:42 -0800549cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/jemalloc_internal_defs.h.in"
550cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/private_namespace.sh"
551cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/private_unnamespace.sh"
Jason Evansf234dc52014-01-16 17:38:01 -0800552cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/private_symbols.txt"
Jason Evans86abd0d2013-11-30 15:25:42 -0800553cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/public_namespace.sh"
554cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/public_unnamespace.sh"
Jason Evansb1726102012-02-28 16:50:47 -0800555cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/internal/size_classes.sh"
Jason Evansf234dc52014-01-16 17:38:01 -0800556cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/jemalloc_rename.sh"
557cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/jemalloc_mangle.sh"
Jason Evansdc1bed62013-12-05 21:43:46 -0800558cfghdrs_in="${cfghdrs_in} ${srcroot}include/jemalloc/jemalloc.sh"
Jason Evans80061b62013-12-09 13:21:08 -0800559cfghdrs_in="${cfghdrs_in} ${srcroot}test/include/test/jemalloc_test_defs.h.in"
Jason Evansb0fd5012010-01-17 01:49:20 -0800560
Jason Evans86abd0d2013-11-30 15:25:42 -0800561cfghdrs_out="include/jemalloc/jemalloc_defs.h"
562cfghdrs_out="${cfghdrs_out} include/jemalloc/jemalloc${install_suffix}.h"
Jason Evans86abd0d2013-11-30 15:25:42 -0800563cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/private_namespace.h"
564cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/private_unnamespace.h"
Jason Evansf234dc52014-01-16 17:38:01 -0800565cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/public_symbols.txt"
Jason Evans86abd0d2013-11-30 15:25:42 -0800566cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/public_namespace.h"
567cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/public_unnamespace.h"
Jason Evansb1726102012-02-28 16:50:47 -0800568cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/size_classes.h"
Jason Evansf234dc52014-01-16 17:38:01 -0800569cfghdrs_out="${cfghdrs_out} include/jemalloc/jemalloc_protos_jet.h"
570cfghdrs_out="${cfghdrs_out} include/jemalloc/jemalloc_rename.h"
571cfghdrs_out="${cfghdrs_out} include/jemalloc/jemalloc_mangle.h"
572cfghdrs_out="${cfghdrs_out} include/jemalloc/jemalloc_mangle_jet.h"
573cfghdrs_out="${cfghdrs_out} include/jemalloc/internal/jemalloc_internal_defs.h"
Jason Evans80061b62013-12-09 13:21:08 -0800574cfghdrs_out="${cfghdrs_out} test/include/test/jemalloc_test_defs.h"
Jason Evansb0fd5012010-01-17 01:49:20 -0800575
Jason Evans86abd0d2013-11-30 15:25:42 -0800576cfghdrs_tup="include/jemalloc/jemalloc_defs.h:include/jemalloc/jemalloc_defs.h.in"
577cfghdrs_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 -0800578cfghdrs_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 -0800579
Jason Evans644d4142014-04-14 22:49:23 -0700580dnl Silence irrelevant compiler warnings by default.
Jason Evans355b4382010-09-20 19:20:48 -0700581AC_ARG_ENABLE([cc-silence],
Jason Evans644d4142014-04-14 22:49:23 -0700582 [AS_HELP_STRING([--disable-cc-silence],
583 [Do not silence irrelevant compiler warnings])],
Jason Evans355b4382010-09-20 19:20:48 -0700584[if test "x$enable_cc_silence" = "xno" ; then
585 enable_cc_silence="0"
586else
587 enable_cc_silence="1"
588fi
589],
Jason Evans644d4142014-04-14 22:49:23 -0700590[enable_cc_silence="1"]
Jason Evans355b4382010-09-20 19:20:48 -0700591)
592if test "x$enable_cc_silence" = "x1" ; then
Jason Evanse24c7af2012-03-19 10:21:17 -0700593 AC_DEFINE([JEMALLOC_CC_SILENCE], [ ])
Jason Evans355b4382010-09-20 19:20:48 -0700594fi
595
Jason Evansb7924f52009-06-23 19:01:18 -0700596dnl Do not compile with debugging by default.
597AC_ARG_ENABLE([debug],
Mike Hommey5135e342012-12-06 22:16:26 +0100598 [AS_HELP_STRING([--enable-debug], [Build debugging code (implies --enable-ivsalloc)])],
Jason Evansb7924f52009-06-23 19:01:18 -0700599[if test "x$enable_debug" = "xno" ; then
600 enable_debug="0"
601else
602 enable_debug="1"
603fi
604],
605[enable_debug="0"]
606)
607if test "x$enable_debug" = "x1" ; then
608 AC_DEFINE([JEMALLOC_DEBUG], [ ])
Mike Hommey5135e342012-12-06 22:16:26 +0100609 enable_ivsalloc="1"
Jason Evansb7924f52009-06-23 19:01:18 -0700610fi
611AC_SUBST([enable_debug])
612
Mike Hommey5135e342012-12-06 22:16:26 +0100613dnl Do not validate pointers by default.
614AC_ARG_ENABLE([ivsalloc],
615 [AS_HELP_STRING([--enable-ivsalloc], [Validate pointers passed through the public API])],
616[if test "x$enable_ivsalloc" = "xno" ; then
617 enable_ivsalloc="0"
618else
619 enable_ivsalloc="1"
620fi
621],
622[enable_ivsalloc="0"]
623)
624if test "x$enable_ivsalloc" = "x1" ; then
625 AC_DEFINE([JEMALLOC_IVSALLOC], [ ])
626fi
627
Jason Evansb7924f52009-06-23 19:01:18 -0700628dnl Only optimize if not debugging.
629if test "x$enable_debug" = "x0" -a "x$no_CFLAGS" = "xyes" ; then
630 dnl Make sure that an optimization flag was not specified in EXTRA_CFLAGS.
Jason Evansf3340ca2009-06-30 16:17:05 -0700631 optimize="no"
Jason Evans748dfac2013-12-06 18:27:33 -0800632 echo "$CFLAGS $EXTRA_CFLAGS" | grep '\-O' >/dev/null || optimize="yes"
Jason Evansf3340ca2009-06-30 16:17:05 -0700633 if test "x${optimize}" = "xyes" ; then
634 if test "x$GCC" = "xyes" ; then
635 JE_CFLAGS_APPEND([-O3])
636 JE_CFLAGS_APPEND([-funroll-loops])
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200637 elif test "x$je_cv_msvc" = "xyes" ; then
638 JE_CFLAGS_APPEND([-O2])
Jason Evansf3340ca2009-06-30 16:17:05 -0700639 else
640 JE_CFLAGS_APPEND([-O])
641 fi
Jason Evansb7924f52009-06-23 19:01:18 -0700642 fi
643fi
644
Jason Evansd073a322012-02-28 20:41:16 -0800645dnl Enable statistics calculation by default.
Jason Evansb7924f52009-06-23 19:01:18 -0700646AC_ARG_ENABLE([stats],
Jason Evans777c1912012-02-28 20:49:22 -0800647 [AS_HELP_STRING([--disable-stats],
648 [Disable statistics calculation/reporting])],
Jason Evansb7924f52009-06-23 19:01:18 -0700649[if test "x$enable_stats" = "xno" ; then
650 enable_stats="0"
651else
652 enable_stats="1"
653fi
654],
Jason Evansd073a322012-02-28 20:41:16 -0800655[enable_stats="1"]
Jason Evansb7924f52009-06-23 19:01:18 -0700656)
657if test "x$enable_stats" = "x1" ; then
658 AC_DEFINE([JEMALLOC_STATS], [ ])
659fi
660AC_SUBST([enable_stats])
661
Jason Evans6109fe02010-02-10 10:37:56 -0800662dnl Do not enable profiling by default.
663AC_ARG_ENABLE([prof],
664 [AS_HELP_STRING([--enable-prof], [Enable allocation profiling])],
665[if test "x$enable_prof" = "xno" ; then
666 enable_prof="0"
667else
668 enable_prof="1"
669fi
670],
671[enable_prof="0"]
672)
Jason Evans77f350b2011-03-15 22:23:12 -0700673if test "x$enable_prof" = "x1" ; then
674 backtrace_method=""
Jason Evansb27805b2010-02-10 18:15:53 -0800675else
Jason Evans77f350b2011-03-15 22:23:12 -0700676 backtrace_method="N/A"
Jason Evansb27805b2010-02-10 18:15:53 -0800677fi
Jason Evans77f350b2011-03-15 22:23:12 -0700678
Jason Evans6109fe02010-02-10 10:37:56 -0800679AC_ARG_ENABLE([prof-libunwind],
680 [AS_HELP_STRING([--enable-prof-libunwind], [Use libunwind for backtracing])],
681[if test "x$enable_prof_libunwind" = "xno" ; then
682 enable_prof_libunwind="0"
683else
684 enable_prof_libunwind="1"
685fi
686],
687[enable_prof_libunwind="0"]
688)
Jason Evansca6bd4f2010-03-02 14:12:58 -0800689AC_ARG_WITH([static_libunwind],
690 [AS_HELP_STRING([--with-static-libunwind=<libunwind.a>],
691 [Path to static libunwind library; use rather than dynamically linking])],
692if test "x$with_static_libunwind" = "xno" ; then
693 LUNWIND="-lunwind"
694else
695 if test ! -f "$with_static_libunwind" ; then
696 AC_MSG_ERROR([Static libunwind not found: $with_static_libunwind])
697 fi
698 LUNWIND="$with_static_libunwind"
699fi,
700 LUNWIND="-lunwind"
701)
Jason Evans77f350b2011-03-15 22:23:12 -0700702if test "x$backtrace_method" = "x" -a "x$enable_prof_libunwind" = "x1" ; then
703 AC_CHECK_HEADERS([libunwind.h], , [enable_prof_libunwind="0"])
704 if test "x$LUNWIND" = "x-lunwind" ; then
705 AC_CHECK_LIB([unwind], [backtrace], [LIBS="$LIBS $LUNWIND"],
706 [enable_prof_libunwind="0"])
707 else
708 LIBS="$LIBS $LUNWIND"
709 fi
710 if test "x${enable_prof_libunwind}" = "x1" ; then
711 backtrace_method="libunwind"
712 AC_DEFINE([JEMALLOC_PROF_LIBUNWIND], [ ])
713 fi
714fi
715
716AC_ARG_ENABLE([prof-libgcc],
717 [AS_HELP_STRING([--disable-prof-libgcc],
718 [Do not use libgcc for backtracing])],
719[if test "x$enable_prof_libgcc" = "xno" ; then
720 enable_prof_libgcc="0"
721else
722 enable_prof_libgcc="1"
723fi
724],
725[enable_prof_libgcc="1"]
726)
727if test "x$backtrace_method" = "x" -a "x$enable_prof_libgcc" = "x1" \
728 -a "x$GCC" = "xyes" ; then
729 AC_CHECK_HEADERS([unwind.h], , [enable_prof_libgcc="0"])
730 AC_CHECK_LIB([gcc], [_Unwind_Backtrace], [LIBS="$LIBS -lgcc"], [enable_prof_libgcc="0"])
Jason Evans77f350b2011-03-15 22:23:12 -0700731 if test "x${enable_prof_libgcc}" = "x1" ; then
732 backtrace_method="libgcc"
733 AC_DEFINE([JEMALLOC_PROF_LIBGCC], [ ])
734 fi
735else
736 enable_prof_libgcc="0"
737fi
738
739AC_ARG_ENABLE([prof-gcc],
740 [AS_HELP_STRING([--disable-prof-gcc],
741 [Do not use gcc intrinsics for backtracing])],
742[if test "x$enable_prof_gcc" = "xno" ; then
743 enable_prof_gcc="0"
744else
745 enable_prof_gcc="1"
746fi
747],
748[enable_prof_gcc="1"]
749)
750if test "x$backtrace_method" = "x" -a "x$enable_prof_gcc" = "x1" \
751 -a "x$GCC" = "xyes" ; then
Jason Evanse181f5a2014-03-30 18:58:32 -0700752 JE_CFLAGS_APPEND([-fno-omit-frame-pointer])
Jason Evans77f350b2011-03-15 22:23:12 -0700753 backtrace_method="gcc intrinsics"
754 AC_DEFINE([JEMALLOC_PROF_GCC], [ ])
755else
756 enable_prof_gcc="0"
757fi
758
759if test "x$backtrace_method" = "x" ; then
760 backtrace_method="none (disabling profiling)"
761 enable_prof="0"
762fi
763AC_MSG_CHECKING([configured backtracing method])
764AC_MSG_RESULT([$backtrace_method])
Jason Evans2dbecf12010-09-05 10:35:13 -0700765if test "x$enable_prof" = "x1" ; then
Jason Evans6716aa82012-04-23 13:04:55 -0700766 if test "x${force_tls}" = "x0" ; then
767 AC_MSG_ERROR([Heap profiling requires TLS]);
768 fi
769 force_tls="1"
Jason Evansd37d5ad2013-12-05 23:01:50 -0800770
771 if test "x$abi" != "xpecoff"; then
772 dnl Heap profiling uses the log(3) function.
773 LIBS="$LIBS -lm"
774 fi
775
Jason Evans2dbecf12010-09-05 10:35:13 -0700776 AC_DEFINE([JEMALLOC_PROF], [ ])
Jason Evans2dbecf12010-09-05 10:35:13 -0700777fi
778AC_SUBST([enable_prof])
Jason Evans2dbecf12010-09-05 10:35:13 -0700779
Jason Evans84cbbcb2009-12-29 00:09:15 -0800780dnl Enable thread-specific caching by default.
781AC_ARG_ENABLE([tcache],
782 [AS_HELP_STRING([--disable-tcache], [Disable per thread caches])],
783[if test "x$enable_tcache" = "xno" ; then
784 enable_tcache="0"
Jason Evansb7924f52009-06-23 19:01:18 -0700785else
Jason Evans84cbbcb2009-12-29 00:09:15 -0800786 enable_tcache="1"
Jason Evansb7924f52009-06-23 19:01:18 -0700787fi
788],
Jason Evans84cbbcb2009-12-29 00:09:15 -0800789[enable_tcache="1"]
Jason Evansb7924f52009-06-23 19:01:18 -0700790)
Jason Evans2dbecf12010-09-05 10:35:13 -0700791if test "x$enable_tcache" = "x1" ; then
792 AC_DEFINE([JEMALLOC_TCACHE], [ ])
793fi
794AC_SUBST([enable_tcache])
Jason Evansb7924f52009-06-23 19:01:18 -0700795
Jason Evans2e671ff2012-05-09 16:12:00 -0700796dnl Disable mremap() for huge realloc() by default.
797AC_ARG_ENABLE([mremap],
798 [AS_HELP_STRING([--enable-mremap], [Enable mremap(2) for huge realloc()])],
799[if test "x$enable_mremap" = "xno" ; then
800 enable_mremap="0"
801else
802 enable_mremap="1"
803fi
804],
805[enable_mremap="0"]
806)
807if test "x$enable_mremap" = "x1" ; then
808 JE_COMPILABLE([mremap(...MREMAP_FIXED...)], [
Jason Evansa4f124f2013-12-08 22:28:27 -0800809#define _GNU_SOURCE
Jason Evans2e671ff2012-05-09 16:12:00 -0700810#include <sys/mman.h>
811], [
812void *p = mremap((void *)0, 0, 0, MREMAP_MAYMOVE|MREMAP_FIXED, (void *)0);
813], [je_cv_mremap_fixed])
814 if test "x${je_cv_mremap_fixed}" = "xno" ; then
815 enable_mremap="0"
816 fi
817fi
818if test "x$enable_mremap" = "x1" ; then
819 AC_DEFINE([JEMALLOC_MREMAP], [ ])
820fi
821AC_SUBST([enable_mremap])
822
Jason Evans59ae2762012-04-16 17:52:27 -0700823dnl Enable VM deallocation via munmap() by default.
824AC_ARG_ENABLE([munmap],
825 [AS_HELP_STRING([--disable-munmap], [Disable VM deallocation via munmap(2)])],
826[if test "x$enable_munmap" = "xno" ; then
827 enable_munmap="0"
828else
829 enable_munmap="1"
830fi
831],
832[enable_munmap="${default_munmap}"]
833)
834if test "x$enable_munmap" = "x1" ; then
835 AC_DEFINE([JEMALLOC_MUNMAP], [ ])
836fi
837AC_SUBST([enable_munmap])
838
Jason Evans4d434ad2014-04-15 12:09:48 -0700839dnl Enable allocation from DSS if supported by the OS.
840have_dss="1"
Mike Hommey83c324a2012-04-12 10:13:03 +0200841dnl Check whether the BSD/SUSv1 sbrk() exists. If not, disable DSS support.
842AC_CHECK_FUNC([sbrk], [have_sbrk="1"], [have_sbrk="0"])
843if test "x$have_sbrk" = "x1" ; then
Jason Evans66688532013-12-03 21:49:36 -0800844 if test "x$sbrk_deprecated" == "x1" ; then
845 AC_MSG_RESULT([Disabling dss allocation because sbrk is deprecated])
Jason Evans4d434ad2014-04-15 12:09:48 -0700846 have_dss="0"
Jason Evans66688532013-12-03 21:49:36 -0800847 fi
Mike Hommey83c324a2012-04-12 10:13:03 +0200848else
Jason Evans4d434ad2014-04-15 12:09:48 -0700849 have_dss="0"
Mike Hommey83c324a2012-04-12 10:13:03 +0200850fi
851
Jason Evans4d434ad2014-04-15 12:09:48 -0700852if test "x$have_dss" = "x1" ; then
Jason Evansb7924f52009-06-23 19:01:18 -0700853 AC_DEFINE([JEMALLOC_DSS], [ ])
854fi
Jason Evansb7924f52009-06-23 19:01:18 -0700855
Jason Evans777c1912012-02-28 20:49:22 -0800856dnl Support the junk/zero filling option by default.
Jason Evansb7924f52009-06-23 19:01:18 -0700857AC_ARG_ENABLE([fill],
Jason Evans122449b2012-04-06 00:35:09 -0700858 [AS_HELP_STRING([--disable-fill],
859 [Disable support for junk/zero filling, quarantine, and redzones])],
Jason Evansb7924f52009-06-23 19:01:18 -0700860[if test "x$enable_fill" = "xno" ; then
861 enable_fill="0"
862else
863 enable_fill="1"
864fi
865],
Jason Evans777c1912012-02-28 20:49:22 -0800866[enable_fill="1"]
Jason Evansb7924f52009-06-23 19:01:18 -0700867)
868if test "x$enable_fill" = "x1" ; then
869 AC_DEFINE([JEMALLOC_FILL], [ ])
870fi
871AC_SUBST([enable_fill])
872
Jason Evansb1476112012-04-05 13:36:17 -0700873dnl Disable utrace(2)-based tracing by default.
874AC_ARG_ENABLE([utrace],
875 [AS_HELP_STRING([--enable-utrace], [Enable utrace(2)-based tracing])],
876[if test "x$enable_utrace" = "xno" ; then
877 enable_utrace="0"
878else
879 enable_utrace="1"
880fi
881],
882[enable_utrace="0"]
883)
884JE_COMPILABLE([utrace(2)], [
885#include <sys/types.h>
886#include <sys/param.h>
887#include <sys/time.h>
888#include <sys/uio.h>
889#include <sys/ktrace.h>
890], [
891 utrace((void *)0, 0);
892], [je_cv_utrace])
893if test "x${je_cv_utrace}" = "xno" ; then
894 enable_utrace="0"
895fi
896if test "x$enable_utrace" = "x1" ; then
897 AC_DEFINE([JEMALLOC_UTRACE], [ ])
898fi
899AC_SUBST([enable_utrace])
900
Jason Evans122449b2012-04-06 00:35:09 -0700901dnl Support Valgrind by default.
902AC_ARG_ENABLE([valgrind],
903 [AS_HELP_STRING([--disable-valgrind], [Disable support for Valgrind])],
904[if test "x$enable_valgrind" = "xno" ; then
905 enable_valgrind="0"
906else
907 enable_valgrind="1"
908fi
909],
910[enable_valgrind="1"]
911)
912if test "x$enable_valgrind" = "x1" ; then
913 JE_COMPILABLE([valgrind], [
914#include <valgrind/valgrind.h>
915#include <valgrind/memcheck.h>
916
Mike Hommey7bfecf42012-04-30 15:15:15 +0200917#if !defined(VALGRIND_RESIZEINPLACE_BLOCK)
Jason Evans122449b2012-04-06 00:35:09 -0700918# error "Incompatible Valgrind version"
919#endif
920], [], [je_cv_valgrind])
921 if test "x${je_cv_valgrind}" = "xno" ; then
922 enable_valgrind="0"
923 fi
924 if test "x$enable_valgrind" = "x1" ; then
925 AC_DEFINE([JEMALLOC_VALGRIND], [ ])
926 fi
927fi
928AC_SUBST([enable_valgrind])
929
Jason Evansb7924f52009-06-23 19:01:18 -0700930dnl Do not support the xmalloc option by default.
931AC_ARG_ENABLE([xmalloc],
932 [AS_HELP_STRING([--enable-xmalloc], [Support xmalloc option])],
933[if test "x$enable_xmalloc" = "xno" ; then
934 enable_xmalloc="0"
935else
936 enable_xmalloc="1"
937fi
938],
939[enable_xmalloc="0"]
940)
941if test "x$enable_xmalloc" = "x1" ; then
942 AC_DEFINE([JEMALLOC_XMALLOC], [ ])
943fi
944AC_SUBST([enable_xmalloc])
945
Jason Evans6684cac2012-03-05 12:15:36 -0800946AC_CACHE_CHECK([STATIC_PAGE_SHIFT],
947 [je_cv_static_page_shift],
948 AC_RUN_IFELSE([AC_LANG_PROGRAM(
Mike Hommeya19e87f2012-04-21 21:27:46 -0700949[[
Mike Hommeyfd97b1d2012-04-30 12:38:31 +0200950#include <strings.h>
Mike Hommeya19e87f2012-04-21 21:27:46 -0700951#ifdef _WIN32
952#include <windows.h>
953#else
Jason Evansb7924f52009-06-23 19:01:18 -0700954#include <unistd.h>
Mike Hommeya19e87f2012-04-21 21:27:46 -0700955#endif
956#include <stdio.h>
Jason Evans6684cac2012-03-05 12:15:36 -0800957]],
958[[
Garrett Cooper72c1e592012-12-02 17:57:28 -0800959 int result;
Jason Evansb7924f52009-06-23 19:01:18 -0700960 FILE *f;
961
Mike Hommeya19e87f2012-04-21 21:27:46 -0700962#ifdef _WIN32
963 SYSTEM_INFO si;
964 GetSystemInfo(&si);
965 result = si.dwPageSize;
966#else
Jason Evansb7924f52009-06-23 19:01:18 -0700967 result = sysconf(_SC_PAGESIZE);
Mike Hommeya19e87f2012-04-21 21:27:46 -0700968#endif
Jason Evansb7924f52009-06-23 19:01:18 -0700969 if (result == -1) {
970 return 1;
971 }
Mike Hommeya19e87f2012-04-21 21:27:46 -0700972 result = ffsl(result) - 1;
973
Jason Evansb7924f52009-06-23 19:01:18 -0700974 f = fopen("conftest.out", "w");
975 if (f == NULL) {
976 return 1;
977 }
Garrett Cooper72c1e592012-12-02 17:57:28 -0800978 fprintf(f, "%d\n", result);
Jason Evans3cc1f1a2012-04-03 22:30:05 -0700979 fclose(f);
Jason Evansb7924f52009-06-23 19:01:18 -0700980
981 return 0;
982]])],
Jason Evans6684cac2012-03-05 12:15:36 -0800983 [je_cv_static_page_shift=`cat conftest.out`],
984 [je_cv_static_page_shift=undefined]))
985
986if test "x$je_cv_static_page_shift" != "xundefined"; then
987 AC_DEFINE_UNQUOTED([STATIC_PAGE_SHIFT], [$je_cv_static_page_shift])
988else
989 AC_MSG_ERROR([cannot determine value for STATIC_PAGE_SHIFT])
990fi
Jason Evansb7924f52009-06-23 19:01:18 -0700991
992dnl ============================================================================
993dnl jemalloc configuration.
994dnl
Jason Evansa40bc7a2010-03-02 13:01:16 -0800995
996dnl Set VERSION if source directory has an embedded git repository.
Jason Evans955851f2011-03-31 22:38:51 -0700997if test -d "${srcroot}.git" ; then
Jason Evans79d660d2010-09-17 17:38:24 -0700998 git describe --long --abbrev=40 > ${srcroot}VERSION
Jason Evansa40bc7a2010-03-02 13:01:16 -0800999fi
Jason Evansb7924f52009-06-23 19:01:18 -07001000jemalloc_version=`cat ${srcroot}VERSION`
Jason Evansa40bc7a2010-03-02 13:01:16 -08001001jemalloc_version_major=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]1}'`
1002jemalloc_version_minor=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]2}'`
1003jemalloc_version_bugfix=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]3}'`
1004jemalloc_version_nrev=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]4}'`
1005jemalloc_version_gid=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]5}'`
Jason Evansb7924f52009-06-23 19:01:18 -07001006AC_SUBST([jemalloc_version])
Jason Evansa40bc7a2010-03-02 13:01:16 -08001007AC_SUBST([jemalloc_version_major])
1008AC_SUBST([jemalloc_version_minor])
1009AC_SUBST([jemalloc_version_bugfix])
1010AC_SUBST([jemalloc_version_nrev])
1011AC_SUBST([jemalloc_version_gid])
Jason Evansb7924f52009-06-23 19:01:18 -07001012
1013dnl ============================================================================
1014dnl Configure pthreads.
1015
Mike Hommeya19e87f2012-04-21 21:27:46 -07001016if test "x$abi" != "xpecoff" ; then
1017 AC_CHECK_HEADERS([pthread.h], , [AC_MSG_ERROR([pthread.h is missing])])
1018 dnl Some systems may embed pthreads functionality in libc; check for libpthread
1019 dnl first, but try libc too before failing.
1020 AC_CHECK_LIB([pthread], [pthread_create], [LIBS="$LIBS -lpthread"],
1021 [AC_SEARCH_LIBS([pthread_create], , ,
1022 AC_MSG_ERROR([libpthread is missing]))])
1023fi
Jason Evansb7924f52009-06-23 19:01:18 -07001024
1025CPPFLAGS="$CPPFLAGS -D_REENTRANT"
1026
Jason Evanscd9a1342012-03-21 18:33:03 -07001027dnl Check whether the BSD-specific _malloc_thread_cleanup() exists. If so, use
1028dnl it rather than pthreads TSD cleanup functions to support cleanup during
1029dnl thread exit, in order to avoid pthreads library recursion during
1030dnl bootstrapping.
Jason Evanscd9a1342012-03-21 18:33:03 -07001031AC_CHECK_FUNC([_malloc_thread_cleanup],
1032 [have__malloc_thread_cleanup="1"],
1033 [have__malloc_thread_cleanup="0"]
1034 )
1035if test "x$have__malloc_thread_cleanup" = "x1" ; then
1036 AC_DEFINE([JEMALLOC_MALLOC_THREAD_CLEANUP], [ ])
1037 force_tls="1"
1038fi
1039
Jason Evans41b6afb2012-02-02 22:04:57 -08001040dnl Check whether the BSD-specific _pthread_mutex_init_calloc_cb() exists. If
1041dnl so, mutex initialization causes allocation, and we need to implement this
1042dnl callback function in order to prevent recursive allocation.
1043AC_CHECK_FUNC([_pthread_mutex_init_calloc_cb],
1044 [have__pthread_mutex_init_calloc_cb="1"],
1045 [have__pthread_mutex_init_calloc_cb="0"]
1046 )
1047if test "x$have__pthread_mutex_init_calloc_cb" = "x1" ; then
1048 AC_DEFINE([JEMALLOC_MUTEX_INIT_CB])
1049fi
1050
Jason Evans0fee70d2012-02-13 12:36:11 -08001051dnl Disable lazy locking by default.
Jason Evansb7924f52009-06-23 19:01:18 -07001052AC_ARG_ENABLE([lazy_lock],
Jason Evans0fee70d2012-02-13 12:36:11 -08001053 [AS_HELP_STRING([--enable-lazy-lock],
1054 [Enable lazy locking (only lock when multi-threaded)])],
Jason Evansb7924f52009-06-23 19:01:18 -07001055[if test "x$enable_lazy_lock" = "xno" ; then
1056 enable_lazy_lock="0"
1057else
1058 enable_lazy_lock="1"
1059fi
1060],
Jason Evans0fee70d2012-02-13 12:36:11 -08001061[enable_lazy_lock="0"]
Jason Evansb7924f52009-06-23 19:01:18 -07001062)
Jason Evansfd4fcef2012-03-23 17:40:58 -07001063if test "x$enable_lazy_lock" = "x0" -a "x${force_lazy_lock}" = "x1" ; then
1064 AC_MSG_RESULT([Forcing lazy-lock to avoid allocator/threading bootstrap issues])
1065 enable_lazy_lock="1"
1066fi
Jason Evansb7924f52009-06-23 19:01:18 -07001067if test "x$enable_lazy_lock" = "x1" ; then
Mike Hommeya19e87f2012-04-21 21:27:46 -07001068 if test "x$abi" != "xpecoff" ; then
1069 AC_CHECK_HEADERS([dlfcn.h], , [AC_MSG_ERROR([dlfcn.h is missing])])
1070 AC_CHECK_FUNC([dlsym], [],
1071 [AC_CHECK_LIB([dl], [dlsym], [LIBS="$LIBS -ldl"],
1072 [AC_MSG_ERROR([libdl is missing])])
1073 ])
1074 fi
Jason Evansb7924f52009-06-23 19:01:18 -07001075 AC_DEFINE([JEMALLOC_LAZY_LOCK], [ ])
1076fi
1077AC_SUBST([enable_lazy_lock])
1078
Jason Evans78d815c2010-01-17 14:06:20 -08001079AC_ARG_ENABLE([tls],
1080 [AS_HELP_STRING([--disable-tls], [Disable thread-local storage (__thread keyword)])],
1081if test "x$enable_tls" = "xno" ; then
1082 enable_tls="0"
1083else
1084 enable_tls="1"
1085fi
1086,
1087enable_tls="1"
1088)
Jason Evanscd9a1342012-03-21 18:33:03 -07001089if test "x${enable_tls}" = "x0" -a "x${force_tls}" = "x1" ; then
1090 AC_MSG_RESULT([Forcing TLS to avoid allocator/threading bootstrap issues])
1091 enable_tls="1"
1092fi
Jason Evansb80581d2012-03-23 16:17:43 -07001093if test "x${enable_tls}" = "x1" -a "x${force_tls}" = "x0" ; then
1094 AC_MSG_RESULT([Forcing no TLS to avoid allocator/threading bootstrap issues])
1095 enable_tls="0"
1096fi
Jason Evans78d815c2010-01-17 14:06:20 -08001097if test "x${enable_tls}" = "x1" ; then
1098AC_MSG_CHECKING([for TLS])
Jason Evans6684cac2012-03-05 12:15:36 -08001099AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
Jason Evans78d815c2010-01-17 14:06:20 -08001100[[
1101 __thread int x;
1102]], [[
1103 x = 42;
1104
1105 return 0;
1106]])],
1107 AC_MSG_RESULT([yes]),
1108 AC_MSG_RESULT([no])
1109 enable_tls="0")
1110fi
Jason Evansb267d0f2010-08-13 15:42:29 -07001111AC_SUBST([enable_tls])
Jason Evanse24c7af2012-03-19 10:21:17 -07001112if test "x${enable_tls}" = "x1" ; then
1113 AC_DEFINE_UNQUOTED([JEMALLOC_TLS], [ ])
Jason Evanscd9a1342012-03-21 18:33:03 -07001114elif test "x${force_tls}" = "x1" ; then
1115 AC_MSG_ERROR([Failed to configure TLS, which is mandatory for correct function])
Jason Evans78d815c2010-01-17 14:06:20 -08001116fi
1117
Jason Evans2dbecf12010-09-05 10:35:13 -07001118dnl ============================================================================
Jason Evans84c8eef2011-03-16 10:30:13 -07001119dnl Check for ffsl(3), and fail if not found. This function exists on all
1120dnl platforms that jemalloc currently has a chance of functioning on without
1121dnl modification.
Jason Evans4c2faa82012-03-13 11:09:23 -07001122JE_COMPILABLE([a program using ffsl], [
Garrett Cooper72c1e592012-12-02 17:57:28 -08001123#include <stdio.h>
Jason Evans382132e2012-04-04 15:25:43 -07001124#include <strings.h>
Jason Evans4c2faa82012-03-13 11:09:23 -07001125#include <string.h>
1126], [
1127 {
1128 int rv = ffsl(0x08);
Garrett Cooper72c1e592012-12-02 17:57:28 -08001129 printf("%d\n", rv);
Jason Evans4c2faa82012-03-13 11:09:23 -07001130 }
1131], [je_cv_function_ffsl])
Jason Evans6684cac2012-03-05 12:15:36 -08001132if test "x${je_cv_function_ffsl}" != "xyes" ; then
1133 AC_MSG_ERROR([Cannot build without ffsl(3)])
1134fi
Jason Evans84c8eef2011-03-16 10:30:13 -07001135
1136dnl ============================================================================
Jason Evansb57d3ec2012-04-17 13:17:54 -07001137dnl Check for atomic(9) operations as provided on FreeBSD.
1138
1139JE_COMPILABLE([atomic(9)], [
1140#include <sys/types.h>
1141#include <machine/atomic.h>
1142#include <inttypes.h>
1143], [
1144 {
1145 uint32_t x32 = 0;
1146 volatile uint32_t *x32p = &x32;
1147 atomic_fetchadd_32(x32p, 1);
1148 }
1149 {
1150 unsigned long xlong = 0;
1151 volatile unsigned long *xlongp = &xlong;
1152 atomic_fetchadd_long(xlongp, 1);
1153 }
1154], [je_cv_atomic9])
1155if test "x${je_cv_atomic9}" = "xyes" ; then
1156 AC_DEFINE([JEMALLOC_ATOMIC9])
1157fi
1158
1159dnl ============================================================================
Jason Evans763baa62011-03-18 19:10:31 -07001160dnl Check for atomic(3) operations as provided on Darwin.
1161
1162JE_COMPILABLE([Darwin OSAtomic*()], [
1163#include <libkern/OSAtomic.h>
1164#include <inttypes.h>
1165], [
1166 {
1167 int32_t x32 = 0;
1168 volatile int32_t *x32p = &x32;
1169 OSAtomicAdd32(1, x32p);
1170 }
1171 {
1172 int64_t x64 = 0;
1173 volatile int64_t *x64p = &x64;
1174 OSAtomicAdd64(1, x64p);
1175 }
Jason Evans6684cac2012-03-05 12:15:36 -08001176], [je_cv_osatomic])
1177if test "x${je_cv_osatomic}" = "xyes" ; then
Jason Evanse24c7af2012-03-19 10:21:17 -07001178 AC_DEFINE([JEMALLOC_OSATOMIC], [ ])
Jason Evans763baa62011-03-18 19:10:31 -07001179fi
1180
1181dnl ============================================================================
Mike Hommeyc1e567b2012-03-26 17:03:41 +02001182dnl Check whether __sync_{add,sub}_and_fetch() are available despite
1183dnl __GCC_HAVE_SYNC_COMPARE_AND_SWAP_n macros being undefined.
1184
1185AC_DEFUN([JE_SYNC_COMPARE_AND_SWAP_CHECK],[
1186 AC_CACHE_CHECK([whether to force $1-bit __sync_{add,sub}_and_fetch()],
1187 [je_cv_sync_compare_and_swap_$2],
Mike Hommey2cfe6d62012-03-27 15:03:07 +02001188 [AC_LINK_IFELSE([AC_LANG_PROGRAM([
1189 #include <stdint.h>
1190 ],
1191 [
1192 #ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_$2
1193 {
1194 uint$1_t x$1 = 0;
1195 __sync_add_and_fetch(&x$1, 42);
1196 __sync_sub_and_fetch(&x$1, 1);
1197 }
1198 #else
1199 #error __GCC_HAVE_SYNC_COMPARE_AND_SWAP_$2 is defined, no need to force
1200 #endif
1201 ])],
Mike Hommeyc1e567b2012-03-26 17:03:41 +02001202 [je_cv_sync_compare_and_swap_$2=yes],
1203 [je_cv_sync_compare_and_swap_$2=no])])
1204
1205 if test "x${je_cv_sync_compare_and_swap_$2}" = "xyes" ; then
1206 AC_DEFINE([JE_FORCE_SYNC_COMPARE_AND_SWAP_$2], [ ])
1207 fi
1208])
1209
Jason Evansb57d3ec2012-04-17 13:17:54 -07001210if test "x${je_cv_atomic9}" != "xyes" -a "x${je_cv_osatomic}" != "xyes" ; then
Mike Hommeyc1e567b2012-03-26 17:03:41 +02001211 JE_SYNC_COMPARE_AND_SWAP_CHECK(32, 4)
1212 JE_SYNC_COMPARE_AND_SWAP_CHECK(64, 8)
1213fi
1214
1215dnl ============================================================================
Jason Evans893a0ed2011-03-18 19:30:18 -07001216dnl Check for spinlock(3) operations as provided on Darwin.
1217
1218JE_COMPILABLE([Darwin OSSpin*()], [
1219#include <libkern/OSAtomic.h>
1220#include <inttypes.h>
1221], [
1222 OSSpinLock lock = 0;
1223 OSSpinLockLock(&lock);
1224 OSSpinLockUnlock(&lock);
Jason Evans6684cac2012-03-05 12:15:36 -08001225], [je_cv_osspin])
1226if test "x${je_cv_osspin}" = "xyes" ; then
Jason Evanse24c7af2012-03-19 10:21:17 -07001227 AC_DEFINE([JEMALLOC_OSSPIN], [ ])
Jason Evans893a0ed2011-03-18 19:30:18 -07001228fi
1229
1230dnl ============================================================================
Jason Evans2dbecf12010-09-05 10:35:13 -07001231dnl Darwin-related configuration.
Jason Evans78d815c2010-01-17 14:06:20 -08001232
Mike Hommeyd0357f72012-11-26 18:52:41 +01001233AC_ARG_ENABLE([zone-allocator],
1234 [AS_HELP_STRING([--disable-zone-allocator],
1235 [Disable zone allocator for Darwin])],
1236[if test "x$enable_zone_allocator" = "xno" ; then
1237 enable_zone_allocator="0"
1238else
1239 enable_zone_allocator="1"
1240fi
1241],
1242[if test "x${abi}" = "xmacho"; then
1243 enable_zone_allocator="1"
1244fi
1245]
1246)
1247AC_SUBST([enable_zone_allocator])
1248
1249if test "x${enable_zone_allocator}" = "x1" ; then
1250 if test "x${abi}" != "xmacho"; then
1251 AC_MSG_ERROR([--enable-zone-allocator is only supported on Darwin])
1252 fi
Jason Evanse24c7af2012-03-19 10:21:17 -07001253 AC_DEFINE([JEMALLOC_IVSALLOC], [ ])
1254 AC_DEFINE([JEMALLOC_ZONE], [ ])
Jason Evans6109fe02010-02-10 10:37:56 -08001255
Jason Evans2dbecf12010-09-05 10:35:13 -07001256 dnl The szone version jumped from 3 to 6 between the OS X 10.5.x and 10.6
1257 dnl releases. malloc_zone_t and malloc_introspection_t have new fields in
1258 dnl 10.6, which is the only source-level indication of the change.
1259 AC_MSG_CHECKING([malloc zone version])
Mike Hommey154829d2012-03-20 18:01:38 +01001260 AC_DEFUN([JE_ZONE_PROGRAM],
1261 [AC_LANG_PROGRAM(
1262 [#include <malloc/malloc.h>],
1263 [static foo[[sizeof($1) $2 sizeof(void *) * $3 ? 1 : -1]]]
1264 )])
Jason Evans2dbecf12010-09-05 10:35:13 -07001265
Mike Hommey154829d2012-03-20 18:01:38 +01001266 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,14)],[JEMALLOC_ZONE_VERSION=3],[
1267 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,15)],[JEMALLOC_ZONE_VERSION=5],[
1268 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,16)],[
1269 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_introspection_t,==,9)],[JEMALLOC_ZONE_VERSION=6],[
1270 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_introspection_t,==,13)],[JEMALLOC_ZONE_VERSION=7],[JEMALLOC_ZONE_VERSION=]
1271 )])],[
1272 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,==,17)],[JEMALLOC_ZONE_VERSION=8],[
1273 AC_COMPILE_IFELSE([JE_ZONE_PROGRAM(malloc_zone_t,>,17)],[JEMALLOC_ZONE_VERSION=9],[JEMALLOC_ZONE_VERSION=]
1274 )])])])])
1275 if test "x${JEMALLOC_ZONE_VERSION}" = "x"; then
1276 AC_MSG_RESULT([unsupported])
1277 AC_MSG_ERROR([Unsupported malloc zone version])
1278 fi
1279 if test "${JEMALLOC_ZONE_VERSION}" = 9; then
1280 JEMALLOC_ZONE_VERSION=8
1281 AC_MSG_RESULT([> 8])
1282 else
1283 AC_MSG_RESULT([$JEMALLOC_ZONE_VERSION])
1284 fi
1285 AC_DEFINE_UNQUOTED(JEMALLOC_ZONE_VERSION, [$JEMALLOC_ZONE_VERSION])
Jason Evansb27805b2010-02-10 18:15:53 -08001286fi
1287
Jason Evansb7924f52009-06-23 19:01:18 -07001288dnl ============================================================================
1289dnl Check for typedefs, structures, and compiler characteristics.
1290AC_HEADER_STDBOOL
1291
Jason Evans748dfac2013-12-06 18:27:33 -08001292dnl ============================================================================
1293dnl Define commands that generate output files.
1294
Jason Evans86abd0d2013-11-30 15:25:42 -08001295AC_CONFIG_COMMANDS([include/jemalloc/internal/private_namespace.h], [
1296 mkdir -p "${objroot}include/jemalloc/internal"
1297 "${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 -08001298], [
1299 srcdir="${srcdir}"
1300 objroot="${objroot}"
Jason Evans86abd0d2013-11-30 15:25:42 -08001301])
1302AC_CONFIG_COMMANDS([include/jemalloc/internal/private_unnamespace.h], [
1303 mkdir -p "${objroot}include/jemalloc/internal"
1304 "${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 -08001305], [
1306 srcdir="${srcdir}"
1307 objroot="${objroot}"
1308])
1309AC_CONFIG_COMMANDS([include/jemalloc/internal/public_symbols.txt], [
1310 f="${objroot}include/jemalloc/internal/public_symbols.txt"
1311 mkdir -p "${objroot}include/jemalloc/internal"
1312 cp /dev/null "${f}"
1313 for nm in `echo ${mangling_map} |tr ',' ' '` ; do
1314 n=`echo ${nm} |tr ':' ' ' |awk '{print $[]1}'`
1315 m=`echo ${nm} |tr ':' ' ' |awk '{print $[]2}'`
1316 echo "${n}:${m}" >> "${f}"
1317 dnl Remove name from public_syms so that it isn't redefined later.
1318 public_syms=`for sym in ${public_syms}; do echo "${sym}"; done |grep -v "^${n}\$" |tr '\n' ' '`
1319 done
1320 for sym in ${public_syms} ; do
1321 n="${sym}"
1322 m="${JEMALLOC_PREFIX}${sym}"
1323 echo "${n}:${m}" >> "${f}"
1324 done
1325], [
1326 srcdir="${srcdir}"
1327 objroot="${objroot}"
1328 mangling_map="${mangling_map}"
1329 public_syms="${public_syms}"
1330 JEMALLOC_PREFIX="${JEMALLOC_PREFIX}"
Jason Evans86abd0d2013-11-30 15:25:42 -08001331])
1332AC_CONFIG_COMMANDS([include/jemalloc/internal/public_namespace.h], [
1333 mkdir -p "${objroot}include/jemalloc/internal"
Jason Evansf234dc52014-01-16 17:38:01 -08001334 "${srcdir}/include/jemalloc/internal/public_namespace.sh" "${objroot}include/jemalloc/internal/public_symbols.txt" > "${objroot}include/jemalloc/internal/public_namespace.h"
1335], [
1336 srcdir="${srcdir}"
1337 objroot="${objroot}"
Jason Evans86abd0d2013-11-30 15:25:42 -08001338])
1339AC_CONFIG_COMMANDS([include/jemalloc/internal/public_unnamespace.h], [
1340 mkdir -p "${objroot}include/jemalloc/internal"
Jason Evansf234dc52014-01-16 17:38:01 -08001341 "${srcdir}/include/jemalloc/internal/public_unnamespace.sh" "${objroot}include/jemalloc/internal/public_symbols.txt" > "${objroot}include/jemalloc/internal/public_unnamespace.h"
1342], [
1343 srcdir="${srcdir}"
1344 objroot="${objroot}"
Jason Evans86abd0d2013-11-30 15:25:42 -08001345])
Jason Evansb1726102012-02-28 16:50:47 -08001346AC_CONFIG_COMMANDS([include/jemalloc/internal/size_classes.h], [
Jason Evans86abd0d2013-11-30 15:25:42 -08001347 mkdir -p "${objroot}include/jemalloc/internal"
Jason Evansb1726102012-02-28 16:50:47 -08001348 "${srcdir}/include/jemalloc/internal/size_classes.sh" > "${objroot}include/jemalloc/internal/size_classes.h"
Jason Evansf234dc52014-01-16 17:38:01 -08001349], [
1350 srcdir="${srcdir}"
1351 objroot="${objroot}"
Jason Evansb1726102012-02-28 16:50:47 -08001352])
Jason Evans86abd0d2013-11-30 15:25:42 -08001353AC_CONFIG_COMMANDS([include/jemalloc/jemalloc_protos_jet.h], [
1354 mkdir -p "${objroot}include/jemalloc"
1355 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 -08001356], [
1357 srcdir="${srcdir}"
1358 objroot="${objroot}"
1359])
1360AC_CONFIG_COMMANDS([include/jemalloc/jemalloc_rename.h], [
1361 mkdir -p "${objroot}include/jemalloc"
1362 "${srcdir}/include/jemalloc/jemalloc_rename.sh" "${objroot}include/jemalloc/internal/public_symbols.txt" > "${objroot}include/jemalloc/jemalloc_rename.h"
1363], [
1364 srcdir="${srcdir}"
1365 objroot="${objroot}"
1366])
1367AC_CONFIG_COMMANDS([include/jemalloc/jemalloc_mangle.h], [
1368 mkdir -p "${objroot}include/jemalloc"
1369 "${srcdir}/include/jemalloc/jemalloc_mangle.sh" "${objroot}include/jemalloc/internal/public_symbols.txt" je_ > "${objroot}include/jemalloc/jemalloc_mangle.h"
1370], [
1371 srcdir="${srcdir}"
1372 objroot="${objroot}"
1373])
1374AC_CONFIG_COMMANDS([include/jemalloc/jemalloc_mangle_jet.h], [
1375 mkdir -p "${objroot}include/jemalloc"
1376 "${srcdir}/include/jemalloc/jemalloc_mangle.sh" "${objroot}include/jemalloc/internal/public_symbols.txt" jet_ > "${objroot}include/jemalloc/jemalloc_mangle_jet.h"
1377], [
1378 srcdir="${srcdir}"
1379 objroot="${objroot}"
Jason Evans86abd0d2013-11-30 15:25:42 -08001380])
1381AC_CONFIG_COMMANDS([include/jemalloc/jemalloc.h], [
1382 mkdir -p "${objroot}include/jemalloc"
1383 "${srcdir}/include/jemalloc/jemalloc.sh" "${objroot}" > "${objroot}include/jemalloc/jemalloc${install_suffix}.h"
Jason Evansf234dc52014-01-16 17:38:01 -08001384], [
1385 srcdir="${srcdir}"
1386 objroot="${objroot}"
1387 install_suffix="${install_suffix}"
Jason Evans86abd0d2013-11-30 15:25:42 -08001388])
Jason Evansb1726102012-02-28 16:50:47 -08001389
Jason Evansb7924f52009-06-23 19:01:18 -07001390dnl Process .in files.
Jason Evansb0fd5012010-01-17 01:49:20 -08001391AC_SUBST([cfghdrs_in])
1392AC_SUBST([cfghdrs_out])
Jason Evans0656ec02010-04-07 23:37:35 -07001393AC_CONFIG_HEADERS([$cfghdrs_tup])
Jason Evansb7924f52009-06-23 19:01:18 -07001394
1395dnl ============================================================================
1396dnl Generate outputs.
Jason Evans748dfac2013-12-06 18:27:33 -08001397
Antony Dovgal2bd3cbc2011-10-13 09:33:33 +04001398AC_CONFIG_FILES([$cfgoutputs_tup config.stamp bin/jemalloc.sh])
Jason Evansb0fd5012010-01-17 01:49:20 -08001399AC_SUBST([cfgoutputs_in])
1400AC_SUBST([cfgoutputs_out])
Jason Evansb7924f52009-06-23 19:01:18 -07001401AC_OUTPUT
1402
1403dnl ============================================================================
1404dnl Print out the results of configuration.
1405AC_MSG_RESULT([===============================================================================])
Jason Evansf576c632011-11-01 22:27:41 -07001406AC_MSG_RESULT([jemalloc version : ${jemalloc_version}])
1407AC_MSG_RESULT([library revision : ${rev}])
Jason Evansb7924f52009-06-23 19:01:18 -07001408AC_MSG_RESULT([])
1409AC_MSG_RESULT([CC : ${CC}])
1410AC_MSG_RESULT([CPPFLAGS : ${CPPFLAGS}])
1411AC_MSG_RESULT([CFLAGS : ${CFLAGS}])
1412AC_MSG_RESULT([LDFLAGS : ${LDFLAGS}])
Jason Evans748dfac2013-12-06 18:27:33 -08001413AC_MSG_RESULT([EXTRA_LDFLAGS : ${EXTRA_LDFLAGS}])
Jason Evansb7924f52009-06-23 19:01:18 -07001414AC_MSG_RESULT([LIBS : ${LIBS}])
1415AC_MSG_RESULT([RPATH_EXTRA : ${RPATH_EXTRA}])
1416AC_MSG_RESULT([])
Jason Evansaee7fd22010-11-24 22:00:02 -08001417AC_MSG_RESULT([XSLTPROC : ${XSLTPROC}])
1418AC_MSG_RESULT([XSLROOT : ${XSLROOT}])
1419AC_MSG_RESULT([])
Jason Evansb7924f52009-06-23 19:01:18 -07001420AC_MSG_RESULT([PREFIX : ${PREFIX}])
1421AC_MSG_RESULT([BINDIR : ${BINDIR}])
Jason Evans662a0172009-07-01 19:24:31 -07001422AC_MSG_RESULT([INCLUDEDIR : ${INCLUDEDIR}])
1423AC_MSG_RESULT([LIBDIR : ${LIBDIR}])
Jason Evansb7924f52009-06-23 19:01:18 -07001424AC_MSG_RESULT([DATADIR : ${DATADIR}])
1425AC_MSG_RESULT([MANDIR : ${MANDIR}])
1426AC_MSG_RESULT([])
1427AC_MSG_RESULT([srcroot : ${srcroot}])
1428AC_MSG_RESULT([abs_srcroot : ${abs_srcroot}])
1429AC_MSG_RESULT([objroot : ${objroot}])
1430AC_MSG_RESULT([abs_objroot : ${abs_objroot}])
1431AC_MSG_RESULT([])
Jason Evans90895cf2009-12-29 00:09:15 -08001432AC_MSG_RESULT([JEMALLOC_PREFIX : ${JEMALLOC_PREFIX}])
Jason Evans746e77a2011-07-30 16:40:52 -07001433AC_MSG_RESULT([JEMALLOC_PRIVATE_NAMESPACE])
1434AC_MSG_RESULT([ : ${JEMALLOC_PRIVATE_NAMESPACE}])
Jason Evansb0fd5012010-01-17 01:49:20 -08001435AC_MSG_RESULT([install_suffix : ${install_suffix}])
Jason Evansb7924f52009-06-23 19:01:18 -07001436AC_MSG_RESULT([autogen : ${enable_autogen}])
Jason Evans355b4382010-09-20 19:20:48 -07001437AC_MSG_RESULT([cc-silence : ${enable_cc_silence}])
Jason Evansb7924f52009-06-23 19:01:18 -07001438AC_MSG_RESULT([debug : ${enable_debug}])
Jason Evans748dfac2013-12-06 18:27:33 -08001439AC_MSG_RESULT([code-coverage : ${enable_code_coverage}])
Jason Evansb7924f52009-06-23 19:01:18 -07001440AC_MSG_RESULT([stats : ${enable_stats}])
Jason Evans6109fe02010-02-10 10:37:56 -08001441AC_MSG_RESULT([prof : ${enable_prof}])
1442AC_MSG_RESULT([prof-libunwind : ${enable_prof_libunwind}])
Jason Evans77f350b2011-03-15 22:23:12 -07001443AC_MSG_RESULT([prof-libgcc : ${enable_prof_libgcc}])
1444AC_MSG_RESULT([prof-gcc : ${enable_prof_gcc}])
Jason Evans84cbbcb2009-12-29 00:09:15 -08001445AC_MSG_RESULT([tcache : ${enable_tcache}])
Jason Evansb7924f52009-06-23 19:01:18 -07001446AC_MSG_RESULT([fill : ${enable_fill}])
Jason Evansb1476112012-04-05 13:36:17 -07001447AC_MSG_RESULT([utrace : ${enable_utrace}])
Jason Evans122449b2012-04-06 00:35:09 -07001448AC_MSG_RESULT([valgrind : ${enable_valgrind}])
1449AC_MSG_RESULT([xmalloc : ${enable_xmalloc}])
Jason Evans2e671ff2012-05-09 16:12:00 -07001450AC_MSG_RESULT([mremap : ${enable_mremap}])
Jason Evans59ae2762012-04-16 17:52:27 -07001451AC_MSG_RESULT([munmap : ${enable_munmap}])
Jason Evansb7924f52009-06-23 19:01:18 -07001452AC_MSG_RESULT([lazy_lock : ${enable_lazy_lock}])
Jason Evans2dbecf12010-09-05 10:35:13 -07001453AC_MSG_RESULT([tls : ${enable_tls}])
Jason Evansb7924f52009-06-23 19:01:18 -07001454AC_MSG_RESULT([===============================================================================])