blob: c33fc6b4a7903b87516e8cfeba6d66033c615822 [file] [log] [blame]
sewardj01262142006-01-04 01:20:28 +00001
2##------------------------------------------------------------##
3#
4# The multiple-architecture stuff in this file is pretty
5# cryptic. Read docs/internals/multiple-architectures.txt
6# for at least a partial explanation of what is going on.
7#
8##------------------------------------------------------------##
9
sewardjde4a1d02002-03-22 01:27:54 +000010# Process this file with autoconf to produce a configure script.
sewardj9ccee392009-08-20 20:20:05 +000011AC_INIT(Valgrind, 3.6.0.SVN, valgrind-users@lists.sourceforge.net)
njn04e16982005-05-31 00:23:43 +000012AC_CONFIG_SRCDIR(coregrind/m_main.c)
sewardjde4a1d02002-03-22 01:27:54 +000013AM_CONFIG_HEADER(config.h)
bart3a2dac02008-03-18 17:40:38 +000014AM_INIT_AUTOMAKE([foreign])
sewardjde4a1d02002-03-22 01:27:54 +000015
gobryb0ed4672002-03-27 20:58:58 +000016AM_MAINTAINER_MODE
17
njn7fd6d382009-01-22 21:56:32 +000018#----------------------------------------------------------------------------
njn7fd6d382009-01-22 21:56:32 +000019# Checks for various programs.
20#----------------------------------------------------------------------------
sewardjb5f6f512005-03-10 23:59:00 +000021CFLAGS="-Wno-long-long"
gobrye721a522002-03-22 13:38:30 +000022
sewardjde4a1d02002-03-22 01:27:54 +000023AC_PROG_LN_S
24AC_PROG_CC
bart0affa492008-03-18 17:53:09 +000025AM_PROG_CC_C_O
sewardjde4a1d02002-03-22 01:27:54 +000026AC_PROG_CPP
njn25e49d8e72002-09-23 09:36:25 +000027AC_PROG_CXX
njn629a5ec2009-07-14 01:29:39 +000028# AC_PROG_OBJC apparently causes problems on older Linux distros (eg. with
29# autoconf 2.59). If we ever have any Objective-C code in the Valgrind code
30# base (eg. most likely as Darwin-specific tests) we'll need one of the
31# following:
njn0cd26892009-07-12 23:07:13 +000032# - put AC_PROG_OBJC in a Darwin-specific part of this file
33# - Use AC_PROG_OBJC here and up the minimum autoconf version
34# - Use the following, which is apparently equivalent:
35# m4_ifdef([AC_PROG_OBJC],
36# [AC_PROG_OBJC],
37# [AC_CHECK_TOOL([OBJC], [gcc])
38# AC_SUBST([OBJC])
39# AC_SUBST([OBJCFLAGS])
40# ])
sewardjde4a1d02002-03-22 01:27:54 +000041AC_PROG_RANLIB
42
bartcddeaf52008-05-25 15:58:11 +000043# If no AR variable was specified, look up the name of the archiver. Otherwise
44# do not touch the AR variable.
45if test "x$AR" = "x"; then
bart325cd972009-04-04 14:36:51 +000046 AC_PATH_PROGS([AR], [`echo $LD | sed 's/ld$/ar/'` "ar"], [ar])
bartcddeaf52008-05-25 15:58:11 +000047fi
48AC_ARG_VAR([AR],[Archiver command])
49
gobrye721a522002-03-22 13:38:30 +000050# Check for the compiler support
51if test "${GCC}" != "yes" ; then
52 AC_MSG_ERROR([Valgrind relies on GCC to be compiled])
53fi
54
sewardj2f685952002-12-22 19:32:23 +000055# figure out where perl lives
56AC_PATH_PROG(PERL, perl)
57
njn9315df32003-04-16 20:50:50 +000058# figure out where gdb lives
sewardjf8722ca2008-11-17 00:20:45 +000059AC_PATH_PROG(GDB, gdb, "/no/gdb/was/found/at/configure/time")
njnfe408942004-11-23 17:52:24 +000060AC_DEFINE_UNQUOTED(GDB_PATH, "$GDB", [path to GDB])
njn9315df32003-04-16 20:50:50 +000061
daywalker48ccca52002-04-15 00:31:58 +000062# some older automake's don't have it so try something on our own
63ifdef([AM_PROG_AS],[AM_PROG_AS],
64[
gobry1be19852002-03-26 20:44:55 +000065AS="${CC}"
66AC_SUBST(AS)
gobry3b777892002-04-04 09:18:39 +000067
gobry1be19852002-03-26 20:44:55 +000068ASFLAGS=""
69AC_SUBST(ASFLAGS)
daywalker48ccca52002-04-15 00:31:58 +000070])
gobry3b777892002-04-04 09:18:39 +000071
gobry3b777892002-04-04 09:18:39 +000072
njn0d2e58f2009-02-25 04:57:56 +000073# Check if 'diff' supports -u (universal diffs) and use it if possible.
74
75AC_MSG_CHECKING([for diff -u])
76AC_SUBST(DIFF)
77
78# Comparing two identical files results in 0, unless -u isn't supported (as
79# it's not on AIX).
njn31f665e2009-02-26 21:25:50 +000080tmpfile="tmp-xxx-yyy-zzz"
81touch $tmpfile;
82if diff -u $tmpfile $tmpfile ; then
njn0d2e58f2009-02-25 04:57:56 +000083 AC_MSG_RESULT([yes])
84 DIFF="diff -u"
85else
86 AC_MSG_RESULT([no])
87 DIFF="diff"
88fi
njn31f665e2009-02-26 21:25:50 +000089rm $tmpfile
njn0d2e58f2009-02-25 04:57:56 +000090
91
sewardj535c50f2005-06-04 23:14:53 +000092# We don't want gcc < 3.0
gobrye721a522002-03-22 13:38:30 +000093AC_MSG_CHECKING([for a supported version of gcc])
94
sewardjf33b4332008-07-18 18:20:42 +000095[gcc_version=`${CC} --version | head -n 1 | sed 's/^[^0-9]*\([0-9.]*\).*$/\1/'`]
gobrye721a522002-03-22 13:38:30 +000096
97case "${gcc_version}" in
bart76719bf2008-04-19 07:47:56 +000098 2.*)
gobrye721a522002-03-22 13:38:30 +000099 AC_MSG_RESULT([no (${gcc_version})])
sewardj535c50f2005-06-04 23:14:53 +0000100 AC_MSG_ERROR([please use a recent (>= gcc-3.0) version of gcc])
101 ;;
gobrye721a522002-03-22 13:38:30 +0000102 *)
103 AC_MSG_RESULT([ok (${gcc_version})])
104 ;;
105esac
106
njn7fd6d382009-01-22 21:56:32 +0000107#----------------------------------------------------------------------------
108# Arch/OS/platform tests.
109#----------------------------------------------------------------------------
110# We create a number of arch/OS/platform-related variables. We prefix them
111# all with "VGCONF_" which indicates that they are defined at
112# configure-time, and distinguishes them from the VGA_*/VGO_*/VGP_*
113# variables used when compiling C files.
sewardj03d86f22006-10-17 00:57:24 +0000114
sewardjde4a1d02002-03-22 01:27:54 +0000115AC_CANONICAL_HOST
116
117AC_MSG_CHECKING([for a supported CPU])
sewardjbc692db2006-01-04 03:31:07 +0000118
njn7fd6d382009-01-22 21:56:32 +0000119# ARCH_MAX reflects the most that this CPU can do: for example if it
120# is a 64-bit capable PowerPC, then it must be set to ppc64 and not ppc32.
121# Ditto for amd64. It is used for more configuration below, but is not used
122# outside this file.
gobrye721a522002-03-22 13:38:30 +0000123case "${host_cpu}" in
sewardjde4a1d02002-03-22 01:27:54 +0000124 i?86)
125 AC_MSG_RESULT([ok (${host_cpu})])
njn7fd6d382009-01-22 21:56:32 +0000126 ARCH_MAX="x86"
sewardjde4a1d02002-03-22 01:27:54 +0000127 ;;
128
njnfe408942004-11-23 17:52:24 +0000129 x86_64)
130 AC_MSG_RESULT([ok (${host_cpu})])
njn7fd6d382009-01-22 21:56:32 +0000131 ARCH_MAX="amd64"
njnfe408942004-11-23 17:52:24 +0000132 ;;
133
sewardj2c48c7b2005-11-29 13:05:56 +0000134 powerpc64)
njn7fd6d382009-01-22 21:56:32 +0000135 # This value can only happen on Linux, not on AIX
sewardj2c48c7b2005-11-29 13:05:56 +0000136 AC_MSG_RESULT([ok (${host_cpu})])
njn7fd6d382009-01-22 21:56:32 +0000137 ARCH_MAX="ppc64"
sewardj2c48c7b2005-11-29 13:05:56 +0000138 ;;
139
140 powerpc)
njn7fd6d382009-01-22 21:56:32 +0000141 # Complexity. 'powerpc' on AIX implies a 64-bit capable CPU.
142 # Whereas in Linux that means only a 32-bit capable CPU.
cerion85665ca2005-06-20 15:51:07 +0000143 AC_MSG_RESULT([ok (${host_cpu})])
sewardj03d86f22006-10-17 00:57:24 +0000144 case "${host_os}" in
145 aix5.*)
njn7fd6d382009-01-22 21:56:32 +0000146 ARCH_MAX="ppc64"
sewardj03d86f22006-10-17 00:57:24 +0000147 ;;
148 *)
njn7fd6d382009-01-22 21:56:32 +0000149 ARCH_MAX="ppc32"
sewardj03d86f22006-10-17 00:57:24 +0000150 ;;
151 esac
nethercote9bcc9062004-10-13 13:50:01 +0000152 ;;
153
sewardj59570ff2010-01-01 11:59:33 +0000154 armv7*)
155 AC_MSG_RESULT([ok (${host_cpu})])
156 ARCH_MAX="arm"
157 ;;
158
sewardjde4a1d02002-03-22 01:27:54 +0000159 *)
160 AC_MSG_RESULT([no (${host_cpu})])
nethercote81d5c662004-10-13 13:18:51 +0000161 AC_MSG_ERROR([Unsupported host architecture. Sorry])
sewardjde4a1d02002-03-22 01:27:54 +0000162 ;;
163esac
164
njn7fd6d382009-01-22 21:56:32 +0000165#----------------------------------------------------------------------------
166
sewardj86e992f2006-01-28 18:39:09 +0000167# Sometimes it's convenient to subvert the bi-arch build system and
168# just have a single build even though the underlying platform is
169# capable of both. Hence handle --enable-only64bit and
170# --enable-only32bit. Complain if both are issued :-)
njn7fd6d382009-01-22 21:56:32 +0000171# [Actually, if either of these options are used, I think both get built,
172# but only one gets installed. So if you use an in-place build, both can be
173# used. --njn]
sewardj86e992f2006-01-28 18:39:09 +0000174
175# Check if a 64-bit only build has been requested
176AC_CACHE_CHECK([for a 64-bit only build], vg_cv_only64bit,
177 [AC_ARG_ENABLE(only64bit,
178 [ --enable-only64bit do a 64-bit only build],
179 [vg_cv_only64bit=$enableval],
180 [vg_cv_only64bit=no])])
181
182# Check if a 32-bit only build has been requested
183AC_CACHE_CHECK([for a 32-bit only build], vg_cv_only32bit,
184 [AC_ARG_ENABLE(only32bit,
185 [ --enable-only32bit do a 32-bit only build],
186 [vg_cv_only32bit=$enableval],
187 [vg_cv_only32bit=no])])
188
189# Stay sane
190if test x$vg_cv_only64bit = xyes -a x$vg_cv_only32bit = xyes; then
191 AC_MSG_ERROR(
192 [Nonsensical: both --enable-only64bit and --enable-only32bit.])
193fi
194
njn7fd6d382009-01-22 21:56:32 +0000195#----------------------------------------------------------------------------
sewardj86e992f2006-01-28 18:39:09 +0000196
njn311303f2009-02-06 03:46:50 +0000197# VGCONF_OS is the primary build OS, eg. "linux". It is passed in to
198# compilation of many C files via -VGO_$(VGCONF_OS) and
199# -VGP_$(VGCONF_ARCH_PRI)_$(VGCONF_OS).
sewardjde4a1d02002-03-22 01:27:54 +0000200AC_MSG_CHECKING([for a supported OS])
njn7fd6d382009-01-22 21:56:32 +0000201AC_SUBST(VGCONF_OS)
sewardjde4a1d02002-03-22 01:27:54 +0000202
njnf76d27a2009-05-28 01:53:07 +0000203DEFAULT_SUPP=""
204
gobrye721a522002-03-22 13:38:30 +0000205case "${host_os}" in
mueller8c68e042004-01-03 15:21:14 +0000206 *linux*)
sewardjde4a1d02002-03-22 01:27:54 +0000207 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000208 VGCONF_OS="linux"
mueller8c68e042004-01-03 15:21:14 +0000209
210 # Ok, this is linux. Check the kernel version
211 AC_MSG_CHECKING([for the kernel version])
212
213 kernel=`uname -r`
214
215 case "${kernel}" in
216 2.6.*)
217 AC_MSG_RESULT([2.6 family (${kernel})])
218 AC_DEFINE([KERNEL_2_6], 1, [Define to 1 if you're using Linux 2.6.x])
219 ;;
220
221 2.4.*)
222 AC_MSG_RESULT([2.4 family (${kernel})])
223 AC_DEFINE([KERNEL_2_4], 1, [Define to 1 if you're using Linux 2.4.x])
224 ;;
225
mueller8c68e042004-01-03 15:21:14 +0000226 *)
227 AC_MSG_RESULT([unsupported (${kernel})])
nethercote4fa681f2004-11-08 17:51:39 +0000228 AC_MSG_ERROR([Valgrind works on kernels 2.4, 2.6])
mueller8c68e042004-01-03 15:21:14 +0000229 ;;
230 esac
231
232 ;;
233
sewardj03d86f22006-10-17 00:57:24 +0000234 aix5.1.*)
235 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000236 VGCONF_OS="aix5"
sewardj03d86f22006-10-17 00:57:24 +0000237 ;;
238 aix5.2.*)
239 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000240 VGCONF_OS="aix5"
sewardj03d86f22006-10-17 00:57:24 +0000241 ;;
242 aix5.3.*)
243 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000244 VGCONF_OS="aix5"
sewardj03d86f22006-10-17 00:57:24 +0000245 ;;
246
mueller8c68e042004-01-03 15:21:14 +0000247 *freebsd*)
248 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000249 VGCONF_OS="freebsd"
sewardjde4a1d02002-03-22 01:27:54 +0000250 ;;
251
njnf76d27a2009-05-28 01:53:07 +0000252 *darwin*)
253 AC_MSG_RESULT([ok (${host_os})])
254 VGCONF_OS="darwin"
255
256 AC_MSG_CHECKING([for the kernel version])
257 kernel=`uname -r`
258
259 # Nb: for Darwin we set DEFAULT_SUPP here. That's because Darwin
260 # has only one relevant version, the OS version. The `uname` check
261 # is a good way to get that version (i.e. "Darwin 9.6.0" is Mac OS
262 # X 10.5.6, and "Darwin 10.x" would presumably be Mac OS X 10.6.x
263 # Snow Leopard and darwin10.supp), and we don't know of an macros
264 # similar to __GLIBC__ to get that info.
265 #
266 # XXX: `uname -r` won't do the right thing for cross-compiles, but
267 # that's not a problem yet.
268 case "${kernel}" in
269 9.*)
270 AC_MSG_RESULT([Darwin 9.x (${kernel}) / Mac OS X 10.5 Leopard])
271 DEFAULT_SUPP="darwin9.supp ${DEFAULT_SUPP}"
bart6ccda142009-07-23 07:37:32 +0000272 DEFAULT_SUPP="darwin9-drd.supp ${DEFAULT_SUPP}"
njnf76d27a2009-05-28 01:53:07 +0000273 ;;
274 *)
275 AC_MSG_RESULT([unsupported (${kernel})])
276 AC_MSG_ERROR([Valgrind works on Darwin 9.x (Mac OS X 10.5)])
277 ;;
278 esac
279 ;;
280
sewardjde4a1d02002-03-22 01:27:54 +0000281 *)
282 AC_MSG_RESULT([no (${host_os})])
mueller8c68e042004-01-03 15:21:14 +0000283 AC_MSG_ERROR([Valgrind is operating system specific. Sorry. Please consider doing a port.])
sewardjde4a1d02002-03-22 01:27:54 +0000284 ;;
285esac
286
njn7fd6d382009-01-22 21:56:32 +0000287#----------------------------------------------------------------------------
288
tomd6398392006-06-07 17:44:36 +0000289# If we are building on a 64 bit platform test to see if the system
290# supports building 32 bit programs and disable 32 bit support if it
291# does not support building 32 bit programs
292
njn7fd6d382009-01-22 21:56:32 +0000293case "$ARCH_MAX-$VGCONF_OS" in
tomd6398392006-06-07 17:44:36 +0000294 amd64-linux|ppc64-linux)
295 AC_MSG_CHECKING([for 32 bit build support])
296 safe_CFLAGS=$CFLAGS
297 CFLAGS="-m32"
298 AC_TRY_LINK(, [
njn9890ee12009-01-21 22:25:50 +0000299 return 0;
tomd6398392006-06-07 17:44:36 +0000300 ],
301 [
302 AC_MSG_RESULT([yes])
303 ], [
304 vg_cv_only64bit="yes"
305 AC_MSG_RESULT([no])
306 ])
307 CFLAGS=$safe_CFLAGS;;
308esac
309
310if test x$vg_cv_only64bit = xyes -a x$vg_cv_only32bit = xyes; then
311 AC_MSG_ERROR(
312 [--enable-only32bit was specified but system does not support 32 bit builds])
313fi
nethercote888ecb72004-08-23 14:54:40 +0000314
njn7fd6d382009-01-22 21:56:32 +0000315#----------------------------------------------------------------------------
316
njn311303f2009-02-06 03:46:50 +0000317# VGCONF_ARCH_PRI is the arch for the primary build target, eg. "amd64". By
318# default it's the same as ARCH_MAX. But if, say, we do a build on an amd64
319# machine, but --enable-only32bit has been requested, then ARCH_MAX (see
320# above) will be "amd64" since that reflects the most that this cpu can do,
321# but VGCONF_ARCH_PRI will be downgraded to "x86", since that reflects the
322# arch corresponding to the primary build (VGCONF_PLATFORM_PRI_CAPS). It is
njn7fd6d382009-01-22 21:56:32 +0000323# passed in to compilation of many C files via -VGA_$(VGCONF_ARCH_PRI) and
324# -VGP_$(VGCONF_ARCH_PRI)_$(VGCONF_OS).
325AC_SUBST(VGCONF_ARCH_PRI)
326
njn3f8a6e92009-06-02 00:20:47 +0000327# VGCONF_ARCH_SEC is the arch for the secondary build target, eg. "x86".
328# It is passed in to compilation of many C files via -VGA_$(VGCONF_ARCH_SEC)
329# and -VGP_$(VGCONF_ARCH_SEC)_$(VGCONF_OS), if there is a secondary target.
330# It is empty if there is no secondary target.
331AC_SUBST(VGCONF_ARCH_SEC)
332
njn311303f2009-02-06 03:46:50 +0000333# VGCONF_PLATFORM_PRI_CAPS is the primary build target, eg. "AMD64_LINUX".
334# The entire system, including regression and performance tests, will be
335# built for this target. The "_CAPS" indicates that the name is in capital
336# letters, and it also uses '_' rather than '-' as a separator, because it's
njn7fd6d382009-01-22 21:56:32 +0000337# used to create various Makefile variables, which are all in caps by
njn311303f2009-02-06 03:46:50 +0000338# convention and cannot contain '-' characters. This is in contrast to
339# VGCONF_ARCH_PRI and VGCONF_OS which are not in caps.
njn7fd6d382009-01-22 21:56:32 +0000340AC_SUBST(VGCONF_PLATFORM_PRI_CAPS)
341
342# VGCONF_PLATFORM_SEC_CAPS is the secondary build target, if there is one.
343# Valgrind and tools will also be built for this target, but not the
344# regression or performance tests.
sewardj01262142006-01-04 01:20:28 +0000345#
njn7fd6d382009-01-22 21:56:32 +0000346# By default, the primary arch is the same as the "max" arch, as commented
347# above (at the definition of ARCH_MAX). We may choose to downgrade it in
348# the big case statement just below here, in the case where we're building
349# on a 64 bit machine but have been requested only to do a 32 bit build.
350AC_SUBST(VGCONF_PLATFORM_SEC_CAPS)
351
sewardj01262142006-01-04 01:20:28 +0000352AC_MSG_CHECKING([for a supported CPU/OS combination])
nethercote888ecb72004-08-23 14:54:40 +0000353
njn7fd6d382009-01-22 21:56:32 +0000354case "$ARCH_MAX-$VGCONF_OS" in
sewardj01262142006-01-04 01:20:28 +0000355 x86-linux)
njn7fd6d382009-01-22 21:56:32 +0000356 VGCONF_ARCH_PRI="x86"
njn3f8a6e92009-06-02 00:20:47 +0000357 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000358 VGCONF_PLATFORM_PRI_CAPS="X86_LINUX"
359 VGCONF_PLATFORM_SEC_CAPS=""
njnd74b0ef2009-01-20 06:06:52 +0000360 valt_load_address_normal="0x38000000"
361 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000362 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000363 ;;
364 amd64-linux)
sewardj86e992f2006-01-28 18:39:09 +0000365 if test x$vg_cv_only64bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000366 VGCONF_ARCH_PRI="amd64"
njn3f8a6e92009-06-02 00:20:47 +0000367 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000368 VGCONF_PLATFORM_PRI_CAPS="AMD64_LINUX"
369 VGCONF_PLATFORM_SEC_CAPS=""
sewardj86e992f2006-01-28 18:39:09 +0000370 elif test x$vg_cv_only32bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000371 VGCONF_ARCH_PRI="x86"
njn3f8a6e92009-06-02 00:20:47 +0000372 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000373 VGCONF_PLATFORM_PRI_CAPS="X86_LINUX"
374 VGCONF_PLATFORM_SEC_CAPS=""
sewardj86e992f2006-01-28 18:39:09 +0000375 else
njn7fd6d382009-01-22 21:56:32 +0000376 VGCONF_ARCH_PRI="amd64"
njn3f8a6e92009-06-02 00:20:47 +0000377 VGCONF_ARCH_SEC="x86"
njn7fd6d382009-01-22 21:56:32 +0000378 VGCONF_PLATFORM_PRI_CAPS="AMD64_LINUX"
379 VGCONF_PLATFORM_SEC_CAPS="X86_LINUX"
sewardj86e992f2006-01-28 18:39:09 +0000380 fi
njnd74b0ef2009-01-20 06:06:52 +0000381 valt_load_address_normal="0x38000000"
382 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000383 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000384 ;;
385 ppc32-linux)
njn7fd6d382009-01-22 21:56:32 +0000386 VGCONF_ARCH_PRI="ppc32"
njn3f8a6e92009-06-02 00:20:47 +0000387 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000388 VGCONF_PLATFORM_PRI_CAPS="PPC32_LINUX"
389 VGCONF_PLATFORM_SEC_CAPS=""
njnd74b0ef2009-01-20 06:06:52 +0000390 valt_load_address_normal="0x38000000"
391 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000392 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000393 ;;
sewardj03d86f22006-10-17 00:57:24 +0000394 ppc64-aix5)
395 if test x$vg_cv_only64bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000396 VGCONF_ARCH_PRI="ppc64"
njn3f8a6e92009-06-02 00:20:47 +0000397 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000398 VGCONF_PLATFORM_PRI_CAPS="PPC64_AIX5"
399 VGCONF_PLATFORM_SEC_CAPS=""
sewardj03d86f22006-10-17 00:57:24 +0000400 elif test x$vg_cv_only32bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000401 VGCONF_ARCH_PRI="ppc32"
njn3f8a6e92009-06-02 00:20:47 +0000402 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000403 VGCONF_PLATFORM_PRI_CAPS="PPC32_AIX5"
404 VGCONF_PLATFORM_SEC_CAPS=""
sewardj03d86f22006-10-17 00:57:24 +0000405 else
njn7fd6d382009-01-22 21:56:32 +0000406 VGCONF_ARCH_PRI="ppc64"
njn3f8a6e92009-06-02 00:20:47 +0000407 VGCONF_ARCH_SEC="ppc32"
njn7fd6d382009-01-22 21:56:32 +0000408 VGCONF_PLATFORM_PRI_CAPS="PPC64_AIX5"
409 VGCONF_PLATFORM_SEC_CAPS="PPC32_AIX5"
sewardj03d86f22006-10-17 00:57:24 +0000410 fi
njnd74b0ef2009-01-20 06:06:52 +0000411 valt_load_address_normal="0x38000000"
412 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000413 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj03d86f22006-10-17 00:57:24 +0000414 ;;
sewardj01262142006-01-04 01:20:28 +0000415 ppc64-linux)
sewardj86e992f2006-01-28 18:39:09 +0000416 if test x$vg_cv_only64bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000417 VGCONF_ARCH_PRI="ppc64"
njn3f8a6e92009-06-02 00:20:47 +0000418 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000419 VGCONF_PLATFORM_PRI_CAPS="PPC64_LINUX"
420 VGCONF_PLATFORM_SEC_CAPS=""
sewardj86e992f2006-01-28 18:39:09 +0000421 elif test x$vg_cv_only32bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000422 VGCONF_ARCH_PRI="ppc32"
njn3f8a6e92009-06-02 00:20:47 +0000423 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000424 VGCONF_PLATFORM_PRI_CAPS="PPC32_LINUX"
425 VGCONF_PLATFORM_SEC_CAPS=""
sewardj86e992f2006-01-28 18:39:09 +0000426 else
njn7fd6d382009-01-22 21:56:32 +0000427 VGCONF_ARCH_PRI="ppc64"
njn3f8a6e92009-06-02 00:20:47 +0000428 VGCONF_ARCH_SEC="ppc32"
njn7fd6d382009-01-22 21:56:32 +0000429 VGCONF_PLATFORM_PRI_CAPS="PPC64_LINUX"
430 VGCONF_PLATFORM_SEC_CAPS="PPC32_LINUX"
sewardj86e992f2006-01-28 18:39:09 +0000431 fi
njnd74b0ef2009-01-20 06:06:52 +0000432 valt_load_address_normal="0x38000000"
433 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000434 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000435 ;;
njnf76d27a2009-05-28 01:53:07 +0000436 x86-darwin)
437 VGCONF_ARCH_PRI="x86"
njn3f8a6e92009-06-02 00:20:47 +0000438 VGCONF_ARCH_SEC=""
njnf76d27a2009-05-28 01:53:07 +0000439 VGCONF_PLATFORM_PRI_CAPS="X86_DARWIN"
440 VGCONF_PLATFORM_SEC_CAPS=""
441 valt_load_address_normal="0x0"
442 valt_load_address_inner="0x0"
443 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
444 ;;
445 amd64-darwin)
446 if test x$vg_cv_only64bit = xyes; then
447 VGCONF_ARCH_PRI="amd64"
njn3f8a6e92009-06-02 00:20:47 +0000448 VGCONF_ARCH_SEC=""
njnf76d27a2009-05-28 01:53:07 +0000449 VGCONF_PLATFORM_PRI_CAPS="AMD64_DARWIN"
450 VGCONF_PLATFORM_SEC_CAPS=""
451 elif test x$vg_cv_only32bit = xyes; then
452 VGCONF_ARCH_PRI="x86"
njn3f8a6e92009-06-02 00:20:47 +0000453 VGCONF_ARCH_SEC=""
njnf76d27a2009-05-28 01:53:07 +0000454 VGCONF_PLATFORM_PRI_CAPS="X86_DARWIN"
455 VGCONF_PLATFORM_SEC_CAPS=""
456 VGCONF_ARCH_PRI_CAPS="x86"
457 else
458 VGCONF_ARCH_PRI="amd64"
njn3f8a6e92009-06-02 00:20:47 +0000459 VGCONF_ARCH_SEC="x86"
njnf76d27a2009-05-28 01:53:07 +0000460 VGCONF_PLATFORM_PRI_CAPS="AMD64_DARWIN"
461 VGCONF_PLATFORM_SEC_CAPS="X86_DARWIN"
462 fi
463 valt_load_address_normal="0x0"
464 valt_load_address_inner="0x0"
465 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
466 ;;
sewardj59570ff2010-01-01 11:59:33 +0000467 arm-linux)
468 VGCONF_ARCH_PRI="arm"
469 VGCONF_PLATFORM_PRI_CAPS="ARM_LINUX"
470 VGCONF_PLATFORM_SEC_CAPS=""
471 valt_load_address_normal="0x38000000"
472 valt_load_address_inner="0x28000000"
473 AC_MSG_RESULT([ok (${host_cpu}-${host_os})])
474 ;;
nethercote888ecb72004-08-23 14:54:40 +0000475 *)
njn7fd6d382009-01-22 21:56:32 +0000476 VGCONF_ARCH_PRI="unknown"
njn3f8a6e92009-06-02 00:20:47 +0000477 VGCONF_ARCH_SEC="unknown"
njn7fd6d382009-01-22 21:56:32 +0000478 VGCONF_PLATFORM_PRI_CAPS="UNKNOWN"
479 VGCONF_PLATFORM_SEC_CAPS="UNKNOWN"
njn377c43f2009-05-19 07:39:22 +0000480 AC_MSG_RESULT([no (${ARCH_MAX}-${VGCONF_OS})])
sewardj3e38ce02004-11-23 01:17:29 +0000481 AC_MSG_ERROR([Valgrind is platform specific. Sorry. Please consider doing a port.])
nethercote888ecb72004-08-23 14:54:40 +0000482 ;;
483esac
sewardjde4a1d02002-03-22 01:27:54 +0000484
njn7fd6d382009-01-22 21:56:32 +0000485#----------------------------------------------------------------------------
njna454ec02009-01-19 03:16:59 +0000486
njn7fd6d382009-01-22 21:56:32 +0000487# Set up VGCONF_ARCHS_INCLUDE_<arch>. Either one or two of these become
488# defined.
489AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_X86,
490 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
njnf76d27a2009-05-28 01:53:07 +0000491 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX \
492 -o x$VGCONF_PLATFORM_PRI_CAPS = xX86_DARWIN \
493 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_DARWIN )
njn7fd6d382009-01-22 21:56:32 +0000494AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_AMD64,
njnf76d27a2009-05-28 01:53:07 +0000495 test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \
496 -o x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_DARWIN )
njn7fd6d382009-01-22 21:56:32 +0000497AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_PPC32,
498 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX \
499 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX \
500 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
501 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5 )
502AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_PPC64,
503 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX \
504 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 )
sewardj59570ff2010-01-01 11:59:33 +0000505AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_ARM,
506 test x$VGCONF_PLATFORM_PRI_CAPS = xARM_LINUX )
sewardj03d86f22006-10-17 00:57:24 +0000507
njn7fd6d382009-01-22 21:56:32 +0000508# Set up VGCONF_PLATFORMS_INCLUDE_<platform>. Either one or two of these
509# become defined.
510AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_X86_LINUX,
511 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
512 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX)
513AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_AMD64_LINUX,
514 test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX)
515AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC32_LINUX,
516 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX \
517 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX)
518AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC64_LINUX,
519 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX)
sewardj59570ff2010-01-01 11:59:33 +0000520AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_ARM_LINUX,
521 test x$VGCONF_PLATFORM_PRI_CAPS = xARM_LINUX)
njnf76d27a2009-05-28 01:53:07 +0000522
njn7fd6d382009-01-22 21:56:32 +0000523AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC32_AIX5,
524 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
525 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5)
526AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC64_AIX5,
527 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5)
528
njnf76d27a2009-05-28 01:53:07 +0000529AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_X86_DARWIN,
530 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_DARWIN \
531 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_DARWIN)
532AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_AMD64_DARWIN,
533 test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_DARWIN)
534
535
njn7fd6d382009-01-22 21:56:32 +0000536# Similarly, set up VGCONF_OF_IS_<os>. Exactly one of these becomes defined.
sewardj03d86f22006-10-17 00:57:24 +0000537# Relies on the assumption that the primary and secondary targets are
538# for the same OS, so therefore only necessary to test the primary.
njn7fd6d382009-01-22 21:56:32 +0000539AM_CONDITIONAL(VGCONF_OS_IS_LINUX,
540 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
541 -o x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \
542 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX \
sewardj59570ff2010-01-01 11:59:33 +0000543 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX \
544 -o x$VGCONF_PLATFORM_PRI_CAPS = xARM_LINUX )
njn7fd6d382009-01-22 21:56:32 +0000545AM_CONDITIONAL(VGCONF_OS_IS_AIX5,
546 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
547 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5)
njnf76d27a2009-05-28 01:53:07 +0000548AM_CONDITIONAL(VGCONF_OS_IS_DARWIN,
549 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_DARWIN \
550 -o x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_DARWIN)
sewardj03d86f22006-10-17 00:57:24 +0000551
552
njn7fd6d382009-01-22 21:56:32 +0000553# Sometimes, in the Makefile.am files, it's useful to know whether or not
554# there is a secondary target.
njnee0c66a2009-06-01 23:59:20 +0000555AM_CONDITIONAL(VGCONF_HAVE_PLATFORM_SEC,
njn7fd6d382009-01-22 21:56:32 +0000556 test x$VGCONF_PLATFORM_SEC_CAPS != x)
tomfb7bcde2005-11-07 15:24:38 +0000557
tomb637bad2005-11-08 12:28:35 +0000558
njn7fd6d382009-01-22 21:56:32 +0000559#----------------------------------------------------------------------------
560# Inner Valgrind?
561#----------------------------------------------------------------------------
562
njnd74b0ef2009-01-20 06:06:52 +0000563# Check if this should be built as an inner Valgrind, to be run within
564# another Valgrind. Choose the load address accordingly.
565AC_SUBST(VALT_LOAD_ADDRESS)
566AC_CACHE_CHECK([for use as an inner Valgrind], vg_cv_inner,
567 [AC_ARG_ENABLE(inner,
568 [ --enable-inner enables self-hosting],
569 [vg_cv_inner=$enableval],
570 [vg_cv_inner=no])])
571if test "$vg_cv_inner" = yes; then
572 AC_DEFINE([ENABLE_INNER], 1, [configured to run as an inner Valgrind])
573 VALT_LOAD_ADDRESS=$valt_load_address_inner
574else
575 VALT_LOAD_ADDRESS=$valt_load_address_normal
576fi
577
578
njn7fd6d382009-01-22 21:56:32 +0000579#----------------------------------------------------------------------------
580# Libc and suppressions
581#----------------------------------------------------------------------------
582# This variable will collect the suppression files to be used.
njn7fd6d382009-01-22 21:56:32 +0000583AC_SUBST(DEFAULT_SUPP)
sewardj01262142006-01-04 01:20:28 +0000584
dirk07596a22008-04-25 11:33:30 +0000585GLIBC_VERSION=""
sewardjde4a1d02002-03-22 01:27:54 +0000586
sewardjde4a1d02002-03-22 01:27:54 +0000587AC_EGREP_CPP([GLIBC_22], [
588#include <features.h>
589#ifdef __GNU_LIBRARY__
590 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 2)
591 GLIBC_22
592 #endif
593#endif
594],
dirk07596a22008-04-25 11:33:30 +0000595GLIBC_VERSION="2.2")
sewardjde4a1d02002-03-22 01:27:54 +0000596
sewardj08c7f012002-10-07 23:56:55 +0000597AC_EGREP_CPP([GLIBC_23], [
598#include <features.h>
599#ifdef __GNU_LIBRARY__
600 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 3)
601 GLIBC_23
602 #endif
603#endif
604],
dirk07596a22008-04-25 11:33:30 +0000605GLIBC_VERSION="2.3")
sewardj08c7f012002-10-07 23:56:55 +0000606
njn781dba52005-06-30 04:06:38 +0000607AC_EGREP_CPP([GLIBC_24], [
608#include <features.h>
609#ifdef __GNU_LIBRARY__
610 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 4)
611 GLIBC_24
612 #endif
613#endif
614],
dirk07596a22008-04-25 11:33:30 +0000615GLIBC_VERSION="2.4")
njn781dba52005-06-30 04:06:38 +0000616
dirkaece45c2006-10-12 08:17:49 +0000617AC_EGREP_CPP([GLIBC_25], [
618#include <features.h>
619#ifdef __GNU_LIBRARY__
620 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 5)
621 GLIBC_25
622 #endif
623#endif
624],
dirk07596a22008-04-25 11:33:30 +0000625GLIBC_VERSION="2.5")
dirkaece45c2006-10-12 08:17:49 +0000626
dirkc8bd0c52007-05-23 17:39:08 +0000627AC_EGREP_CPP([GLIBC_26], [
628#include <features.h>
629#ifdef __GNU_LIBRARY__
630 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 6)
631 GLIBC_26
632 #endif
633#endif
634],
dirk07596a22008-04-25 11:33:30 +0000635GLIBC_VERSION="2.6")
dirkc8bd0c52007-05-23 17:39:08 +0000636
sewardj68c80c12007-11-18 14:40:02 +0000637AC_EGREP_CPP([GLIBC_27], [
638#include <features.h>
639#ifdef __GNU_LIBRARY__
640 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 7)
641 GLIBC_27
642 #endif
643#endif
644],
dirk07596a22008-04-25 11:33:30 +0000645GLIBC_VERSION="2.7")
646
647AC_EGREP_CPP([GLIBC_28], [
648#include <features.h>
649#ifdef __GNU_LIBRARY__
650 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 8)
651 GLIBC_28
652 #endif
653#endif
654],
655GLIBC_VERSION="2.8")
sewardj68c80c12007-11-18 14:40:02 +0000656
dirkd2e31eb2008-11-19 23:58:36 +0000657AC_EGREP_CPP([GLIBC_29], [
658#include <features.h>
659#ifdef __GNU_LIBRARY__
660 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 9)
661 GLIBC_29
662 #endif
663#endif
664],
665GLIBC_VERSION="2.9")
666
sewardj5d425e82009-02-01 19:01:11 +0000667AC_EGREP_CPP([GLIBC_210], [
668#include <features.h>
669#ifdef __GNU_LIBRARY__
670 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 10)
671 GLIBC_210
672 #endif
673#endif
674],
675GLIBC_VERSION="2.10")
676
bart0fac7ff2009-11-15 19:11:19 +0000677AC_EGREP_CPP([GLIBC_211], [
678#include <features.h>
679#ifdef __GNU_LIBRARY__
680 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 11)
681 GLIBC_211
682 #endif
683#endif
684],
685GLIBC_VERSION="2.11")
686
sewardj03d86f22006-10-17 00:57:24 +0000687AC_EGREP_CPP([AIX5_LIBC], [
688#include <standards.h>
689#if defined(_AIXVERSION_510) || defined(_AIXVERSION_520) || defined(_AIXVERSION_530)
690 AIX5_LIBC
691#endif
692],
dirk07596a22008-04-25 11:33:30 +0000693GLIBC_VERSION="aix5")
daywalkere9212b32003-06-15 22:39:15 +0000694
njnf76d27a2009-05-28 01:53:07 +0000695# not really a version check
696AC_EGREP_CPP([DARWIN_LIBC], [
697#include <sys/cdefs.h>
698#if defined(__DARWIN_VERS_1050)
699 DARWIN_LIBC
700#endif
701],
702GLIBC_VERSION="darwin")
703
dirk07596a22008-04-25 11:33:30 +0000704AC_MSG_CHECKING([the GLIBC_VERSION version])
sewardj03d86f22006-10-17 00:57:24 +0000705
dirk07596a22008-04-25 11:33:30 +0000706case "${GLIBC_VERSION}" in
sewardjde4a1d02002-03-22 01:27:54 +0000707 2.2)
708 AC_MSG_RESULT(2.2 family)
daywalker418c7482002-10-16 13:09:26 +0000709 AC_DEFINE([GLIBC_2_2], 1, [Define to 1 if you're using glibc 2.2.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000710 DEFAULT_SUPP="glibc-2.2.supp ${DEFAULT_SUPP}"
711 DEFAULT_SUPP="glibc-2.2-LinuxThreads-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000712 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardjde4a1d02002-03-22 01:27:54 +0000713 ;;
714
sewardj08c7f012002-10-07 23:56:55 +0000715 2.3)
716 AC_MSG_RESULT(2.3 family)
daywalker418c7482002-10-16 13:09:26 +0000717 AC_DEFINE([GLIBC_2_3], 1, [Define to 1 if you're using glibc 2.3.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000718 DEFAULT_SUPP="glibc-2.3.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000719 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000720 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardj08c7f012002-10-07 23:56:55 +0000721 ;;
722
njn781dba52005-06-30 04:06:38 +0000723 2.4)
724 AC_MSG_RESULT(2.4 family)
725 AC_DEFINE([GLIBC_2_4], 1, [Define to 1 if you're using glibc 2.4.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000726 DEFAULT_SUPP="glibc-2.4.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000727 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000728 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
njn781dba52005-06-30 04:06:38 +0000729 ;;
730
dirkaece45c2006-10-12 08:17:49 +0000731 2.5)
732 AC_MSG_RESULT(2.5 family)
733 AC_DEFINE([GLIBC_2_5], 1, [Define to 1 if you're using glibc 2.5.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000734 DEFAULT_SUPP="glibc-2.5.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000735 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000736 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
dirkaece45c2006-10-12 08:17:49 +0000737 ;;
dirkc8bd0c52007-05-23 17:39:08 +0000738 2.6)
739 AC_MSG_RESULT(2.6 family)
740 AC_DEFINE([GLIBC_2_6], 1, [Define to 1 if you're using glibc 2.6.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000741 DEFAULT_SUPP="glibc-2.6.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000742 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000743 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000744 ;;
745 2.7)
746 AC_MSG_RESULT(2.7 family)
747 AC_DEFINE([GLIBC_2_7], 1, [Define to 1 if you're using glibc 2.7.x])
dirk07596a22008-04-25 11:33:30 +0000748 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000749 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000750 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
dirkc8bd0c52007-05-23 17:39:08 +0000751 ;;
dirk07596a22008-04-25 11:33:30 +0000752 2.8)
753 AC_MSG_RESULT(2.8 family)
dirkeb939fc2008-04-27 20:38:47 +0000754 AC_DEFINE([GLIBC_2_8], 1, [Define to 1 if you're using glibc 2.8.x])
dirk07596a22008-04-25 11:33:30 +0000755 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
756 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
757 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
758 ;;
dirkd2e31eb2008-11-19 23:58:36 +0000759 2.9)
760 AC_MSG_RESULT(2.9 family)
761 AC_DEFINE([GLIBC_2_9], 1, [Define to 1 if you're using glibc 2.9.x])
762 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
763 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
764 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
765 ;;
sewardj5d425e82009-02-01 19:01:11 +0000766 2.10)
767 AC_MSG_RESULT(2.10 family)
768 AC_DEFINE([GLIBC_2_10], 1, [Define to 1 if you're using glibc 2.10.x])
769 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
770 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
771 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
772 ;;
bart0fac7ff2009-11-15 19:11:19 +0000773 2.11)
774 AC_MSG_RESULT(2.11 family)
775 AC_DEFINE([GLIBC_2_11], 1, [Define to 1 if you're using glibc 2.11.x])
776 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
777 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
778 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
779 ;;
sewardj03d86f22006-10-17 00:57:24 +0000780 aix5)
sewardj2f3bcd22006-12-12 01:38:15 +0000781 AC_MSG_RESULT(AIX 5.1 or 5.2 or 5.3)
782 AC_DEFINE([AIX5_LIBC], 1, [Define to 1 if you're using AIX 5.1 or 5.2 or 5.3])
sewardj03d86f22006-10-17 00:57:24 +0000783 DEFAULT_SUPP="aix5libc.supp ${DEFAULT_SUPP}"
784 ;;
njnf76d27a2009-05-28 01:53:07 +0000785 darwin)
786 AC_MSG_RESULT(Darwin)
787 AC_DEFINE([DARWIN_LIBC], 1, [Define to 1 if you're using Darwin])
788 # DEFAULT_SUPP set by kernel version check above.
789 ;;
dirkaece45c2006-10-12 08:17:49 +0000790
sewardjde4a1d02002-03-22 01:27:54 +0000791 *)
792 AC_MSG_RESULT(unsupported version)
bart0fac7ff2009-11-15 19:11:19 +0000793 AC_MSG_ERROR([Valgrind requires glibc version 2.2 - 2.11])
dirk07596a22008-04-25 11:33:30 +0000794 AC_MSG_ERROR([or AIX 5.1 or 5.2 or 5.3 GLIBC_VERSION])
njnf76d27a2009-05-28 01:53:07 +0000795 AC_MSG_ERROR([or Darwin libc])
sewardjde4a1d02002-03-22 01:27:54 +0000796 ;;
797esac
798
dirk07596a22008-04-25 11:33:30 +0000799AC_SUBST(GLIBC_VERSION)
sewardj535c50f2005-06-04 23:14:53 +0000800
sewardj414f3582008-07-18 20:46:00 +0000801
802# Add default suppressions for the X client libraries. Make no
803# attempt to detect whether such libraries are installed on the
804# build machine (or even if any X facilities are present); just
805# add the suppressions antidisirregardless.
806DEFAULT_SUPP="xfree-4.supp ${DEFAULT_SUPP}"
807DEFAULT_SUPP="xfree-3.supp ${DEFAULT_SUPP}"
gobrye721a522002-03-22 13:38:30 +0000808
sewardj5744c022008-10-19 18:58:13 +0000809# Add glibc and X11 suppressions for exp-ptrcheck
810DEFAULT_SUPP="exp-ptrcheck.supp ${DEFAULT_SUPP}"
811
sewardj2e10a682003-04-07 19:36:41 +0000812
njn7fd6d382009-01-22 21:56:32 +0000813#----------------------------------------------------------------------------
814# Checking for various library functions and other definitions
815#----------------------------------------------------------------------------
816
bart59e2f182008-04-28 16:22:53 +0000817# Check for CLOCK_MONOTONIC
818
819AC_MSG_CHECKING([for CLOCK_MONOTONIC])
820
821AC_TRY_COMPILE(
822[
823#include <time.h>
824], [
825 struct timespec t;
826 clock_gettime(CLOCK_MONOTONIC, &t);
827 return 0;
828],
829[
830AC_MSG_RESULT([yes])
831AC_DEFINE([HAVE_CLOCK_MONOTONIC], 1,
832 [Define to 1 if you have the `CLOCK_MONOTONIC' constant.])
833], [
834AC_MSG_RESULT([no])
835])
836
bartfea06922008-05-03 09:12:15 +0000837
838# Check for PTHREAD_MUTEX_ADAPTIVE_NP
839
840AC_MSG_CHECKING([for PTHREAD_MUTEX_ADAPTIVE_NP])
841
842AC_TRY_COMPILE(
843[
844#define _GNU_SOURCE
845#include <pthread.h>
846], [
847 return (PTHREAD_MUTEX_ADAPTIVE_NP);
848],
849[
850AC_MSG_RESULT([yes])
851AC_DEFINE([HAVE_PTHREAD_MUTEX_ADAPTIVE_NP], 1,
852 [Define to 1 if you have the `PTHREAD_MUTEX_ADAPTIVE_NP' constant.])
853], [
854AC_MSG_RESULT([no])
855])
856
857
858# Check for PTHREAD_MUTEX_ERRORCHECK_NP
859
860AC_MSG_CHECKING([for PTHREAD_MUTEX_ERRORCHECK_NP])
861
862AC_TRY_COMPILE(
863[
864#define _GNU_SOURCE
865#include <pthread.h>
866], [
867 return (PTHREAD_MUTEX_ERRORCHECK_NP);
868],
869[
870AC_MSG_RESULT([yes])
871AC_DEFINE([HAVE_PTHREAD_MUTEX_ERRORCHECK_NP], 1,
872 [Define to 1 if you have the `PTHREAD_MUTEX_ERRORCHECK_NP' constant.])
873], [
874AC_MSG_RESULT([no])
875])
876
877
878# Check for PTHREAD_MUTEX_RECURSIVE_NP
879
880AC_MSG_CHECKING([for PTHREAD_MUTEX_RECURSIVE_NP])
881
882AC_TRY_COMPILE(
883[
884#define _GNU_SOURCE
885#include <pthread.h>
886], [
887 return (PTHREAD_MUTEX_RECURSIVE_NP);
888],
889[
890AC_MSG_RESULT([yes])
891AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE_NP], 1,
892 [Define to 1 if you have the `PTHREAD_MUTEX_RECURSIVE_NP' constant.])
893], [
894AC_MSG_RESULT([no])
895])
896
897
898# Check for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
899
900AC_MSG_CHECKING([for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP])
901
902AC_TRY_COMPILE(
903[
904#define _GNU_SOURCE
905#include <pthread.h>
906], [
907 pthread_mutex_t m = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
908 return 0;
909],
910[
911AC_MSG_RESULT([yes])
912AC_DEFINE([HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], 1,
913 [Define to 1 if you have the `PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP' constant.])
914], [
915AC_MSG_RESULT([no])
916])
917
918
bart5e389f12008-04-05 12:53:15 +0000919# Check whether pthread_mutex_t has a member called __m_kind.
920
bartb11355c2010-04-29 16:37:26 +0000921AC_CHECK_MEMBER([pthread_mutex_t.__m_kind],
922 [AC_DEFINE([HAVE_PTHREAD_MUTEX_T__M_KIND],
923 1,
924 [Define to 1 if pthread_mutex_t has a member called __m_kind.])
925 ],
926 [],
927 [#include <pthread.h>])
bart5e389f12008-04-05 12:53:15 +0000928
929
930# Check whether pthread_mutex_t has a member called __data.__kind.
931
bartb11355c2010-04-29 16:37:26 +0000932AC_CHECK_MEMBER([pthread_mutex_t.__data.__kind],
933 [AC_DEFINE([HAVE_PTHREAD_MUTEX_T__DATA__KIND],
934 1,
935 [Define to 1 if pthread_mutex_t has a member __data.__kind.])
936 ],
937 [],
938 [#include <pthread.h>])
bart5e389f12008-04-05 12:53:15 +0000939
940
bart62c370e2008-05-12 18:50:51 +0000941# does this compiler support -maltivec and does it have the include file
942# <altivec.h> ?
943
944AC_MSG_CHECKING([for Altivec])
945
946safe_CFLAGS=$CFLAGS
947CFLAGS="-maltivec"
948
949AC_TRY_COMPILE(
950[
951#include <altivec.h>
952], [
953 vector unsigned int v;
954],
955[
956ac_have_altivec=yes
957AC_MSG_RESULT([yes])
958], [
959ac_have_altivec=no
960AC_MSG_RESULT([no])
961])
962CFLAGS=$safe_CFLAGS
963
964AM_CONDITIONAL([HAS_ALTIVEC], [test x$ac_have_altivec = xyes])
965AM_CONDITIONAL([HAVE_ALTIVEC_H], [test x$ac_have_altivec = xyes])
966
967
bart36dd85a2009-04-26 07:11:48 +0000968# Check for pthread_create@GLIBC2.0
969AC_MSG_CHECKING([for pthread_create@GLIBC2.0()])
970
bart16e1c5a2009-04-26 07:38:53 +0000971safe_CFLAGS=$CFLAGS
972CFLAGS="-lpthread"
bart36dd85a2009-04-26 07:11:48 +0000973AC_TRY_LINK(
974[
975extern int pthread_create_glibc_2_0(void*, const void*,
976 void *(*)(void*), void*);
977__asm__(".symver pthread_create_glibc_2_0, pthread_create@GLIBC_2.0");
978], [
bart276ed3a2009-05-10 15:41:45 +0000979#ifdef __powerpc__
980/*
981 * Apparently on PowerPC linking this program succeeds and generates an
982 * executable with the undefined symbol pthread_create@GLIBC_2.0.
983 */
984#error This test does not work properly on PowerPC.
985#else
bart16e1c5a2009-04-26 07:38:53 +0000986 pthread_create_glibc_2_0(0, 0, 0, 0);
bart276ed3a2009-05-10 15:41:45 +0000987#endif
bart16e1c5a2009-04-26 07:38:53 +0000988 return 0;
bart36dd85a2009-04-26 07:11:48 +0000989],
990[
991ac_have_pthread_create_glibc_2_0=yes
992AC_MSG_RESULT([yes])
993AC_DEFINE([HAVE_PTHREAD_CREATE_GLIBC_2_0], 1,
994 [Define to 1 if you have the `pthread_create@glibc2.0' function.])
995], [
996ac_have_pthread_create_glibc_2_0=no
997AC_MSG_RESULT([no])
998])
bart16e1c5a2009-04-26 07:38:53 +0000999CFLAGS=$safe_CFLAGS
bart36dd85a2009-04-26 07:11:48 +00001000
1001AM_CONDITIONAL(HAVE_PTHREAD_CREATE_GLIBC_2_0,
bart24f53902009-04-26 11:29:02 +00001002 test x$ac_have_pthread_create_glibc_2_0 = xyes)
bart36dd85a2009-04-26 07:11:48 +00001003
1004
barta50aa8a2008-04-27 06:06:57 +00001005# Check for eventfd_t, eventfd() and eventfd_read()
1006AC_MSG_CHECKING([for eventfd()])
1007
1008AC_TRY_LINK(
1009[
1010#include <sys/eventfd.h>
1011], [
1012 eventfd_t ev;
1013 int fd;
1014
1015 fd = eventfd(5, 0);
1016 eventfd_read(fd, &ev);
1017 return 0;
1018],
1019[
1020AC_MSG_RESULT([yes])
1021AC_DEFINE([HAVE_EVENTFD], 1,
1022 [Define to 1 if you have the `eventfd' function.])
1023AC_DEFINE([HAVE_EVENTFD_READ], 1,
1024 [Define to 1 if you have the `eventfd_read' function.])
1025], [
1026AC_MSG_RESULT([no])
1027])
1028
1029
njn7fd6d382009-01-22 21:56:32 +00001030#----------------------------------------------------------------------------
1031# Checking for supported compiler flags.
1032#----------------------------------------------------------------------------
1033
sewardj535c50f2005-06-04 23:14:53 +00001034# does this compiler support -m32 ?
1035AC_MSG_CHECKING([if gcc accepts -m32])
1036
1037safe_CFLAGS=$CFLAGS
1038CFLAGS="-m32"
1039
1040AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001041 return 0;
sewardj535c50f2005-06-04 23:14:53 +00001042],
1043[
1044FLAG_M32="-m32"
1045AC_MSG_RESULT([yes])
1046], [
1047FLAG_M32=""
1048AC_MSG_RESULT([no])
1049])
1050CFLAGS=$safe_CFLAGS
1051
1052AC_SUBST(FLAG_M32)
1053
1054
sewardj03d86f22006-10-17 00:57:24 +00001055# does this compiler support -maix32 ?
1056AC_MSG_CHECKING([if gcc accepts -maix32])
1057
1058safe_CFLAGS=$CFLAGS
1059CFLAGS="-maix32"
1060
1061AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001062 return 0;
sewardj03d86f22006-10-17 00:57:24 +00001063],
1064[
1065FLAG_MAIX32="-maix32"
1066AC_MSG_RESULT([yes])
1067], [
1068FLAG_MAIX32=""
1069AC_MSG_RESULT([no])
1070])
1071CFLAGS=$safe_CFLAGS
1072
1073AC_SUBST(FLAG_MAIX32)
1074
1075
sewardj01262142006-01-04 01:20:28 +00001076# does this compiler support -m64 ?
1077AC_MSG_CHECKING([if gcc accepts -m64])
1078
1079safe_CFLAGS=$CFLAGS
1080CFLAGS="-m64"
1081
1082AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001083 return 0;
sewardj01262142006-01-04 01:20:28 +00001084],
1085[
1086FLAG_M64="-m64"
1087AC_MSG_RESULT([yes])
1088], [
1089FLAG_M64=""
1090AC_MSG_RESULT([no])
1091])
1092CFLAGS=$safe_CFLAGS
1093
1094AC_SUBST(FLAG_M64)
1095
1096
sewardj03d86f22006-10-17 00:57:24 +00001097# does this compiler support -maix64 ?
1098AC_MSG_CHECKING([if gcc accepts -maix64])
1099
1100safe_CFLAGS=$CFLAGS
1101CFLAGS="-maix64"
1102
1103AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001104 return 0;
sewardj03d86f22006-10-17 00:57:24 +00001105],
1106[
1107FLAG_MAIX64="-maix64"
1108AC_MSG_RESULT([yes])
1109], [
1110FLAG_MAIX64=""
1111AC_MSG_RESULT([no])
1112])
1113CFLAGS=$safe_CFLAGS
1114
1115AC_SUBST(FLAG_MAIX64)
1116
1117
sewardj67f1fcc2005-07-03 10:41:02 +00001118# does this compiler support -mmmx ?
1119AC_MSG_CHECKING([if gcc accepts -mmmx])
1120
1121safe_CFLAGS=$CFLAGS
1122CFLAGS="-mmmx"
1123
1124AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001125 return 0;
sewardj67f1fcc2005-07-03 10:41:02 +00001126],
1127[
1128FLAG_MMMX="-mmmx"
1129AC_MSG_RESULT([yes])
1130], [
1131FLAG_MMMX=""
1132AC_MSG_RESULT([no])
1133])
1134CFLAGS=$safe_CFLAGS
1135
1136AC_SUBST(FLAG_MMMX)
1137
1138
1139# does this compiler support -msse ?
1140AC_MSG_CHECKING([if gcc accepts -msse])
1141
1142safe_CFLAGS=$CFLAGS
1143CFLAGS="-msse"
1144
1145AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001146 return 0;
sewardj67f1fcc2005-07-03 10:41:02 +00001147],
1148[
1149FLAG_MSSE="-msse"
1150AC_MSG_RESULT([yes])
1151], [
1152FLAG_MSSE=""
1153AC_MSG_RESULT([no])
1154])
1155CFLAGS=$safe_CFLAGS
1156
1157AC_SUBST(FLAG_MSSE)
1158
1159
sewardj5b754b42002-06-03 22:53:35 +00001160# does this compiler support -mpreferred-stack-boundary=2 ?
1161AC_MSG_CHECKING([if gcc accepts -mpreferred-stack-boundary])
1162
daywalker3664f562003-10-17 13:43:46 +00001163safe_CFLAGS=$CFLAGS
sewardj5b754b42002-06-03 22:53:35 +00001164CFLAGS="-mpreferred-stack-boundary=2"
1165
1166AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001167 return 0;
sewardj5b754b42002-06-03 22:53:35 +00001168],
1169[
1170PREFERRED_STACK_BOUNDARY="-mpreferred-stack-boundary=2"
daywalker3664f562003-10-17 13:43:46 +00001171AC_MSG_RESULT([yes])
sewardj5b754b42002-06-03 22:53:35 +00001172], [
1173PREFERRED_STACK_BOUNDARY=""
1174AC_MSG_RESULT([no])
1175])
daywalker3664f562003-10-17 13:43:46 +00001176CFLAGS=$safe_CFLAGS
sewardj5b754b42002-06-03 22:53:35 +00001177
1178AC_SUBST(PREFERRED_STACK_BOUNDARY)
1179
sewardj535c50f2005-06-04 23:14:53 +00001180
sewardjb5f6f512005-03-10 23:59:00 +00001181# does this compiler support -Wno-pointer-sign ?
bart56730cd2008-05-11 06:41:46 +00001182AC_MSG_CHECKING([if gcc accepts -Wno-pointer-sign])
sewardjb5f6f512005-03-10 23:59:00 +00001183
1184safe_CFLAGS=$CFLAGS
1185CFLAGS="-Wno-pointer-sign"
1186
1187AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001188 return 0;
sewardjb5f6f512005-03-10 23:59:00 +00001189],
1190[
1191no_pointer_sign=yes
1192AC_MSG_RESULT([yes])
1193], [
1194no_pointer_sign=no
1195AC_MSG_RESULT([no])
1196])
1197CFLAGS=$safe_CFLAGS
1198
1199if test x$no_pointer_sign = xyes; then
1200 CFLAGS="$CFLAGS -Wno-pointer-sign"
1201fi
1202
sewardj535c50f2005-06-04 23:14:53 +00001203
barte026bd22009-07-04 12:17:07 +00001204# does this compiler support -Wno-empty-body ?
1205
1206AC_MSG_CHECKING([if gcc accepts -Wno-empty-body])
1207
1208safe_CFLAGS=$CFLAGS
1209CFLAGS="-Wno-empty-body"
1210
1211AC_TRY_COMPILE(
1212[ ],
1213[
1214 return 0;
1215],
1216[
1217AC_SUBST([FLAG_W_NO_EMPTY_BODY], [-Wno-empty-body])
1218AC_MSG_RESULT([yes])
1219],
1220[
1221AC_SUBST([FLAG_W_NO_EMPTY_BODY], [])
1222AC_MSG_RESULT([no])
1223])
1224CFLAGS=$safe_CFLAGS
1225
1226
bart9d865fa2008-06-23 12:11:49 +00001227# does this compiler support -Wno-format-zero-length ?
1228
1229AC_MSG_CHECKING([if gcc accepts -Wno-format-zero-length])
1230
1231safe_CFLAGS=$CFLAGS
1232CFLAGS="-Wno-format-zero-length"
1233
1234AC_TRY_COMPILE(
1235[ ],
1236[
1237 return 0;
1238],
1239[
1240AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [-Wno-format-zero-length])
1241AC_MSG_RESULT([yes])
1242],
1243[
1244AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [])
1245AC_MSG_RESULT([no])
1246])
1247CFLAGS=$safe_CFLAGS
1248
1249
bartbf9b85c2009-08-12 12:55:56 +00001250# does this compiler support -Wno-uninitialized ?
1251
1252AC_MSG_CHECKING([if gcc accepts -Wno-uninitialized])
1253
1254safe_CFLAGS=$CFLAGS
1255CFLAGS="-Wno-uninitialized"
1256
1257AC_TRY_COMPILE(
1258[ ],
1259[
1260 return 0;
1261],
1262[
1263AC_SUBST([FLAG_W_NO_UNINITIALIZED], [-Wno-uninitialized])
1264AC_MSG_RESULT([yes])
1265],
1266[
1267AC_SUBST([FLAG_W_NO_UNINITIALIZED], [])
1268AC_MSG_RESULT([no])
1269])
1270CFLAGS=$safe_CFLAGS
1271
1272
bart56730cd2008-05-11 06:41:46 +00001273# does this compiler support -Wextra or the older -W ?
1274
1275AC_MSG_CHECKING([if gcc accepts -Wextra or -W])
1276
1277safe_CFLAGS=$CFLAGS
1278CFLAGS="-Wextra"
1279
1280AC_TRY_COMPILE(
1281[ ],
1282[
1283 return 0;
1284],
1285[
1286AC_SUBST([FLAG_W_EXTRA], [-Wextra])
1287AC_MSG_RESULT([-Wextra])
1288], [
1289 CFLAGS="-W"
1290 AC_TRY_COMPILE(
1291 [ ],
1292 [
1293 return 0;
1294 ],
1295 [
1296 AC_SUBST([FLAG_W_EXTRA], [-W])
1297 AC_MSG_RESULT([-W])
1298 ], [
1299 AC_SUBST([FLAG_W_EXTRA], [])
1300 AC_MSG_RESULT([not supported])
1301 ])
1302])
1303CFLAGS=$safe_CFLAGS
1304
1305
sewardja72c26d2007-05-01 13:44:08 +00001306# does this compiler support -fno-stack-protector ?
bart56730cd2008-05-11 06:41:46 +00001307AC_MSG_CHECKING([if gcc accepts -fno-stack-protector])
sewardja72c26d2007-05-01 13:44:08 +00001308
1309safe_CFLAGS=$CFLAGS
1310CFLAGS="-fno-stack-protector"
1311
1312AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001313 return 0;
sewardja72c26d2007-05-01 13:44:08 +00001314],
1315[
1316no_stack_protector=yes
1317FLAG_FNO_STACK_PROTECTOR="-fno-stack-protector"
1318AC_MSG_RESULT([yes])
1319], [
1320no_stack_protector=no
1321FLAG_FNO_STACK_PROTECTOR=""
1322AC_MSG_RESULT([no])
1323])
1324CFLAGS=$safe_CFLAGS
1325
1326AC_SUBST(FLAG_FNO_STACK_PROTECTOR)
1327
1328if test x$no_stack_protector = xyes; then
1329 CFLAGS="$CFLAGS -fno-stack-protector"
1330fi
1331
1332
bart56730cd2008-05-11 06:41:46 +00001333# does this compiler support --param inline-unit-growth=... ?
1334
1335AC_MSG_CHECKING([if gcc accepts --param inline-unit-growth])
1336
1337safe_CFLAGS=$CFLAGS
1338CFLAGS="--param inline-unit-growth=900"
1339
1340AC_TRY_COMPILE(
1341[ ],
1342[
1343 return 0;
1344],
1345[
1346AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH],
1347 ["--param inline-unit-growth=900"])
1348AC_MSG_RESULT([yes])
1349], [
1350AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH], [""])
1351AC_MSG_RESULT([no])
1352])
1353CFLAGS=$safe_CFLAGS
1354
1355
sewardj00f1e622006-03-12 16:47:10 +00001356# does the ppc assembler support "mtocrf" et al?
1357AC_MSG_CHECKING([if ppc32/64 as supports mtocrf/mfocrf])
1358
1359AC_TRY_COMPILE(, [
sewardjdd4cbe12006-03-12 17:27:44 +00001360__asm__ __volatile__("mtocrf 4,0");
1361__asm__ __volatile__("mfocrf 0,4");
sewardj00f1e622006-03-12 16:47:10 +00001362],
1363[
1364ac_have_as_ppc_mftocrf=yes
1365AC_MSG_RESULT([yes])
1366], [
1367ac_have_as_ppc_mftocrf=no
1368AC_MSG_RESULT([no])
1369])
1370if test x$ac_have_as_ppc_mftocrf = xyes ; then
1371 AC_DEFINE(HAVE_AS_PPC_MFTOCRF, 1, [Define to 1 if as supports mtocrf/mfocrf.])
1372fi
1373
1374
sewardjf0aabf82007-03-22 00:24:21 +00001375# does the x86/amd64 assembler understand SSE3 instructions?
sewardjfa18a262007-03-22 12:13:13 +00001376# Note, this doesn't generate a C-level symbol. It generates a
1377# automake-level symbol (BUILD_SSE3_TESTS), used in test Makefile.am's
sewardjf0aabf82007-03-22 00:24:21 +00001378AC_MSG_CHECKING([if x86/amd64 assembler speaks SSE3])
1379
1380AC_TRY_COMPILE(, [
1381 do { long long int x;
1382 __asm__ __volatile__("fisttpq (%0)" : :"r"(&x) ); }
1383 while (0)
1384],
1385[
1386ac_have_as_sse3=yes
1387AC_MSG_RESULT([yes])
1388], [
1389ac_have_as_sse3=no
1390AC_MSG_RESULT([no])
1391])
sewardjfa18a262007-03-22 12:13:13 +00001392
1393AM_CONDITIONAL(BUILD_SSE3_TESTS, test x$ac_have_as_sse3 = xyes)
sewardjf0aabf82007-03-22 00:24:21 +00001394
1395
sewardj6d6da5b2008-02-09 12:07:40 +00001396# Ditto for SSSE3 instructions (note extra S)
1397# Note, this doesn't generate a C-level symbol. It generates a
1398# automake-level symbol (BUILD_SSSE3_TESTS), used in test Makefile.am's
1399AC_MSG_CHECKING([if x86/amd64 assembler speaks SSSE3])
1400
1401AC_TRY_COMPILE(, [
1402 do { long long int x;
1403 __asm__ __volatile__(
1404 "pabsb (%0),%%xmm7" : : "r"(&x) : "xmm7" ); }
1405 while (0)
1406],
1407[
1408ac_have_as_ssse3=yes
1409AC_MSG_RESULT([yes])
1410], [
1411ac_have_as_ssse3=no
1412AC_MSG_RESULT([no])
1413])
1414
1415AM_CONDITIONAL(BUILD_SSSE3_TESTS, test x$ac_have_as_ssse3 = xyes)
1416
1417
sewardjb5f6f512005-03-10 23:59:00 +00001418# Check for TLS support in the compiler and linker
bartca9f2ad2008-06-02 07:14:20 +00001419if test "x${cross_compiling}" = "xno"; then
1420# Native compilation: check whether running a program using TLS succeeds.
1421# Linking only is not sufficient -- e.g. on Red Hat 7.3 linking TLS programs
1422# succeeds but running programs using TLS fails.
1423AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1424 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1425 [vg_cv_tls=$enableval],
1426 [AC_RUN_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
1427 [[return foo;]])],
1428 [vg_cv_tls=yes],
1429 [vg_cv_tls=no])])])
1430else
1431# Cross-compiling: check whether linking a program using TLS succeeds.
sewardjb5f6f512005-03-10 23:59:00 +00001432AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1433 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1434 [vg_cv_tls=$enableval],
bartcddeaf52008-05-25 15:58:11 +00001435 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
sewardjb5f6f512005-03-10 23:59:00 +00001436 [[return foo;]])],
1437 [vg_cv_tls=yes],
1438 [vg_cv_tls=no])])])
bartca9f2ad2008-06-02 07:14:20 +00001439fi
sewardjb5f6f512005-03-10 23:59:00 +00001440
1441if test "$vg_cv_tls" = yes; then
1442AC_DEFINE([HAVE_TLS], 1, [can use __thread to define thread-local variables])
1443fi
sewardj5b754b42002-06-03 22:53:35 +00001444
sewardj535c50f2005-06-04 23:14:53 +00001445
njn7fd6d382009-01-22 21:56:32 +00001446#----------------------------------------------------------------------------
bart62f54e42008-07-28 11:35:10 +00001447# Checks for C header files.
njn7fd6d382009-01-22 21:56:32 +00001448#----------------------------------------------------------------------------
1449
sewardjde4a1d02002-03-22 01:27:54 +00001450AC_HEADER_STDC
bartf5ceec82008-04-26 07:45:10 +00001451AC_CHECK_HEADERS([ \
bart1f2b1432009-01-16 12:06:54 +00001452 asm/unistd.h \
bartf5ceec82008-04-26 07:45:10 +00001453 endian.h \
1454 mqueue.h \
1455 sys/endian.h \
1456 sys/epoll.h \
1457 sys/eventfd.h \
bartce48fa92008-04-26 10:59:46 +00001458 sys/klog.h \
bartf5ceec82008-04-26 07:45:10 +00001459 sys/poll.h \
bart71bad292008-04-27 11:43:23 +00001460 sys/signal.h \
bartf5ceec82008-04-26 07:45:10 +00001461 sys/signalfd.h \
bart71bad292008-04-27 11:43:23 +00001462 sys/syscall.h \
1463 sys/time.h \
1464 sys/types.h \
bartf5ceec82008-04-26 07:45:10 +00001465 ])
sewardjde4a1d02002-03-22 01:27:54 +00001466
njn7fd6d382009-01-22 21:56:32 +00001467#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001468# Checks for typedefs, structures, and compiler characteristics.
njn7fd6d382009-01-22 21:56:32 +00001469#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001470AC_TYPE_UID_T
1471AC_TYPE_OFF_T
1472AC_TYPE_SIZE_T
1473AC_HEADER_TIME
1474
sewardj535c50f2005-06-04 23:14:53 +00001475
njn7fd6d382009-01-22 21:56:32 +00001476#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001477# Checks for library functions.
njn7fd6d382009-01-22 21:56:32 +00001478#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001479AC_FUNC_MEMCMP
1480AC_FUNC_MMAP
1481AC_TYPE_SIGNAL
1482
bart71bad292008-04-27 11:43:23 +00001483AC_CHECK_LIB([rt], [clock_gettime])
bart41ac62a2008-07-07 16:58:03 +00001484
bartf5ceec82008-04-26 07:45:10 +00001485AC_CHECK_FUNCS([ \
bart71bad292008-04-27 11:43:23 +00001486 clock_gettime\
bartf5ceec82008-04-26 07:45:10 +00001487 epoll_create \
1488 epoll_pwait \
bartf5ceec82008-04-26 07:45:10 +00001489 floor \
bartce48fa92008-04-26 10:59:46 +00001490 klogctl \
bartf5ceec82008-04-26 07:45:10 +00001491 mallinfo \
1492 memchr \
1493 memset \
1494 mkdir \
njnf76d27a2009-05-28 01:53:07 +00001495 mremap \
bartf5ceec82008-04-26 07:45:10 +00001496 ppoll \
bart6d45e922009-01-20 13:45:38 +00001497 pthread_barrier_init \
1498 pthread_condattr_setclock \
1499 pthread_mutex_timedlock \
1500 pthread_rwlock_timedrdlock \
1501 pthread_rwlock_timedwrlock \
1502 pthread_spin_lock \
barta72a27b2010-04-29 06:22:17 +00001503 pthread_yield \
bartd1f724c2009-08-26 18:11:18 +00001504 readlinkat \
bartf5ceec82008-04-26 07:45:10 +00001505 semtimedop \
1506 signalfd \
njn6cc22472009-03-16 03:46:48 +00001507 sigwaitinfo \
bartf5ceec82008-04-26 07:45:10 +00001508 strchr \
1509 strdup \
1510 strpbrk \
1511 strrchr \
1512 strstr \
barta72a27b2010-04-29 06:22:17 +00001513 syscall \
bartf5ceec82008-04-26 07:45:10 +00001514 timerfd \
1515 utimensat \
1516 ])
sewardjde4a1d02002-03-22 01:27:54 +00001517
bart623eec32008-07-29 17:54:49 +00001518# AC_CHECK_LIB adds any library found to the variable LIBS, and links these
1519# libraries with any shared object and/or executable. This is NOT what we
1520# want for e.g. vgpreload_core-x86-linux.so
1521LIBS=""
sewardj80637752006-03-02 13:48:21 +00001522
bart6d45e922009-01-20 13:45:38 +00001523AM_CONDITIONAL([HAVE_PTHREAD_BARRIER],
1524 [test x$ac_cv_func_pthread_barrier_init = xyes])
bart2eaa8f22009-01-20 14:01:16 +00001525AM_CONDITIONAL([HAVE_PTHREAD_MUTEX_TIMEDLOCK],
1526 [test x$ac_cv_func_pthread_mutex_timedlock = xyes])
bart6d45e922009-01-20 13:45:38 +00001527AM_CONDITIONAL([HAVE_PTHREAD_SPINLOCK],
1528 [test x$ac_cv_func_pthread_spin_lock = xyes])
1529
njn7fd6d382009-01-22 21:56:32 +00001530
1531#----------------------------------------------------------------------------
1532# MPI checks
1533#----------------------------------------------------------------------------
sewardj03d86f22006-10-17 00:57:24 +00001534# Do we have a useable MPI setup on the primary and/or secondary targets?
1535# On Linux, by default, assumes mpicc and -m32/-m64
1536# On AIX, by default, assumes mpxlc and -q32/-q64
sewardje9fa5062006-03-12 18:29:18 +00001537# Note: this is a kludge in that it assumes the specified mpicc
sewardj03d86f22006-10-17 00:57:24 +00001538# understands -m32/-m64/-q32/-q64 regardless of what is specified using
1539# --with-mpicc=.
sewardj0ad46092006-03-02 17:09:16 +00001540MPI_CC="mpicc"
njn7fd6d382009-01-22 21:56:32 +00001541if test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
1542 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001543 MPI_CC="mpxlc"
1544fi
1545
sewardje9fa5062006-03-12 18:29:18 +00001546mflag_primary=
njn7fd6d382009-01-22 21:56:32 +00001547if test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
1548 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX ; then
sewardje9fa5062006-03-12 18:29:18 +00001549 mflag_primary=$FLAG_M32
njn7fd6d382009-01-22 21:56:32 +00001550elif test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \
1551 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX ; then
sewardje9fa5062006-03-12 18:29:18 +00001552 mflag_primary=$FLAG_M64
njn7fd6d382009-01-22 21:56:32 +00001553elif test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001554 mflag_primary=-q32
njn7fd6d382009-01-22 21:56:32 +00001555elif test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001556 mflag_primary=-q64
sewardje9fa5062006-03-12 18:29:18 +00001557fi
1558
sewardj03d86f22006-10-17 00:57:24 +00001559mflag_secondary=
njn7fd6d382009-01-22 21:56:32 +00001560if test x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX \
1561 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX ; then
sewardj03d86f22006-10-17 00:57:24 +00001562 mflag_secondary=$FLAG_M32
njn7fd6d382009-01-22 21:56:32 +00001563elif test x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001564 mflag_secondary=-q32
1565fi
1566
1567
sewardj0ad46092006-03-02 17:09:16 +00001568AC_ARG_WITH(mpicc,
sewardjb70a6132006-05-27 21:14:09 +00001569 [ --with-mpicc= Specify name of MPI2-ised C compiler],
sewardj0ad46092006-03-02 17:09:16 +00001570 MPI_CC=$withval
1571)
sewardj03d86f22006-10-17 00:57:24 +00001572AC_SUBST(MPI_CC)
1573
1574## See if MPI_CC works for the primary target
1575##
1576AC_MSG_CHECKING([primary target for usable MPI2-compliant C compiler and mpi.h])
sewardj0ad46092006-03-02 17:09:16 +00001577saved_CC=$CC
sewardjde4f3842006-03-09 02:41:41 +00001578saved_CFLAGS=$CFLAGS
sewardj0ad46092006-03-02 17:09:16 +00001579CC=$MPI_CC
sewardje9fa5062006-03-12 18:29:18 +00001580CFLAGS=$mflag_primary
sewardjd3fcc642006-03-09 02:49:56 +00001581AC_TRY_LINK([
sewardj1a85e602006-03-08 15:26:10 +00001582#include <mpi.h>
1583#include <stdio.h>
sewardjde4f3842006-03-09 02:41:41 +00001584],[
1585 int r = MPI_Init(NULL,NULL);
1586 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1587 return r;
1588], [
sewardj03d86f22006-10-17 00:57:24 +00001589ac_have_mpi2_pri=yes
sewardj1a85e602006-03-08 15:26:10 +00001590AC_MSG_RESULT([yes, $MPI_CC])
sewardj80637752006-03-02 13:48:21 +00001591], [
sewardj03d86f22006-10-17 00:57:24 +00001592ac_have_mpi2_pri=no
sewardj80637752006-03-02 13:48:21 +00001593AC_MSG_RESULT([no])
1594])
sewardj0ad46092006-03-02 17:09:16 +00001595CC=$saved_CC
sewardjde4f3842006-03-09 02:41:41 +00001596CFLAGS=$saved_CFLAGS
sewardj03d86f22006-10-17 00:57:24 +00001597AM_CONDITIONAL(BUILD_MPIWRAP_PRI, test x$ac_have_mpi2_pri = xyes)
sewardj80637752006-03-02 13:48:21 +00001598
sewardj03d86f22006-10-17 00:57:24 +00001599## See if MPI_CC works for the secondary target. Complication: what if
1600## there is no secondary target? We need this to then fail.
1601## Kludge this by making MPI_CC something which will surely fail in
1602## such a case.
1603##
1604AC_MSG_CHECKING([secondary target for usable MPI2-compliant C compiler and mpi.h])
1605saved_CC=$CC
1606saved_CFLAGS=$CFLAGS
njn7fd6d382009-01-22 21:56:32 +00001607if test x$VGCONF_PLATFORM_SEC_CAPS = x ; then
sewardj03d86f22006-10-17 00:57:24 +00001608 CC="$MPI_CC this will surely fail"
1609else
1610 CC=$MPI_CC
1611fi
1612CFLAGS=$mflag_secondary
1613AC_TRY_LINK([
1614#include <mpi.h>
1615#include <stdio.h>
1616],[
1617 int r = MPI_Init(NULL,NULL);
1618 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1619 return r;
1620], [
1621ac_have_mpi2_sec=yes
1622AC_MSG_RESULT([yes, $MPI_CC])
1623], [
1624ac_have_mpi2_sec=no
1625AC_MSG_RESULT([no])
1626])
1627CC=$saved_CC
1628CFLAGS=$saved_CFLAGS
1629AM_CONDITIONAL(BUILD_MPIWRAP_SEC, test x$ac_have_mpi2_sec = xyes)
sewardj80637752006-03-02 13:48:21 +00001630
1631
njn7fd6d382009-01-22 21:56:32 +00001632#----------------------------------------------------------------------------
1633# Other library checks
1634#----------------------------------------------------------------------------
sewardj493c4ef2008-12-13 16:45:19 +00001635# There now follow some tests for QtCore, Boost, and OpenMP. These
1636# tests are present because Drd has some regression tests that use
1637# these packages. All regression test programs all compiled only
1638# for the primary target. And so it is important that the configure
1639# checks that follow, use the correct -m32 or -m64 flag for the
1640# primary target (called $mflag_primary). Otherwise, we can end up
1641# in a situation (eg) where, on amd64-linux, the test for Boost checks
1642# for usable 64-bit Boost facilities, but because we are doing a 32-bit
1643# only build (meaning, the primary target is x86-linux), the build
1644# of the regtest programs that use Boost fails, because they are
1645# build as 32-bit (IN THIS EXAMPLE).
1646#
1647# Hence: ALWAYS USE $mflag_primary FOR CONFIGURE TESTS FOR FACILITIES
1648# NEEDED BY THE REGRESSION TEST PROGRAMS.
1649
1650
bart21d3cfc2008-08-02 09:08:17 +00001651# The test below verifies whether the QtCore package been installed.
1652# This test works as follows:
1653# - If pkg-config was not installed at the time autogen.sh was run,
1654# the definition of the PKG_CHECK_EXISTS() macro will not be found by
1655# autogen.sh. Augogen.sh will generate a configure script that prints
1656# a warning about pkg-config and proceeds as if Qt4 has not been installed.
1657# - If pkg-config was installed at the time autogen.sh was run,
1658# the generated configure script will try to detect the presence of the
1659# Qt4 QtCore library by looking up compile and linker flags in the file
1660# called QtCore.pc.
1661# - pkg-config settings can be overridden via the configure variables
1662# QTCORE_CFLAGS and QTCORE_LIBS (added by the pkg-config m4 macro's to the
1663# configure script -- see also ./configure --help).
1664# - The QTCORE_CFLAGS and QTCORE_LIBS configure variables can be used even if
1665# the pkg-config executable is not present on the system on which the
1666# configure script is run.
bart41ac62a2008-07-07 16:58:03 +00001667
bart21d3cfc2008-08-02 09:08:17 +00001668ifdef(
1669 [PKG_CHECK_EXISTS],
1670 [PKG_CHECK_EXISTS(
1671 [QtCore],
1672 [
1673 PKG_CHECK_MODULES([QTCORE], [QtCore])
bart11fbd892008-09-21 15:00:58 +00001674 # Paranoia: don't trust the result reported by pkg-config, but when
1675 # pkg-config reports that QtCore has been found, verify whether linking
1676 # programs with QtCore succeeds.
1677 AC_LANG(C++)
1678 safe_CXXFLAGS="${CXXFLAGS}"
sewardj493c4ef2008-12-13 16:45:19 +00001679 CXXFLAGS="${QTCORE_CFLAGS} ${QTCORE_LIBS} $mflag_primary"
bart11fbd892008-09-21 15:00:58 +00001680 AC_TRY_LINK(
1681 [#include <QMutex>],
1682 [QMutex Mutex;],
1683 [ac_have_qtcore=yes],
1684 [
1685 AC_MSG_WARN([Although pkg-config detected Qt4, linking Qt4 programs fails. Skipping Qt4.])
1686 ac_have_qtcore=no
1687 ]
1688 )
1689 CXXFLAGS="${safe_CXXFLAGS}"
bart21d3cfc2008-08-02 09:08:17 +00001690 ],
1691 [
1692 ac_have_qtcore=no
1693 ]
1694 )
1695 ],
1696 AC_MSG_WARN([pkg-config has not been installed or is too old.])
1697 AC_MSG_WARN([Detection of Qt4 will be skipped.])
1698 [ac_have_qtcore=no]
1699)
bart41ac62a2008-07-07 16:58:03 +00001700
1701AM_CONDITIONAL([HAVE_QTCORE], [test x$ac_have_qtcore = xyes])
1702
1703
bart62f54e42008-07-28 11:35:10 +00001704# Test for QMutex::tryLock(int), which has been introduced in Qt 4.3.
1705# See also http://doc.trolltech.com/4.3/qmutex.html.
1706if test x$ac_have_qtcore = xyes; then
1707 AC_MSG_CHECKING([for Qt4 QMutex::tryLock(int)])
1708 AC_LANG(C++)
bart21d3cfc2008-08-02 09:08:17 +00001709 safe_CXXFLAGS="${CXXFLAGS}"
sewardj493c4ef2008-12-13 16:45:19 +00001710 CXXFLAGS="${QTCORE_CFLAGS} $mflag_primary"
bart62f54e42008-07-28 11:35:10 +00001711 AC_TRY_COMPILE([
1712 #include <QtCore/QMutex>
1713 ],
1714 [
1715 QMutex M;
1716 M.tryLock(1);
1717 M.unlock();
1718 return 0;
1719 ],
1720 [
1721 AC_MSG_RESULT([yes])
1722 AC_DEFINE([HAVE_QTCORE_QMUTEX_TRYLOCK_INT], [1], [Define to 1 if the installed version of Qt4 provides QMutex::tryLock(int).])
1723 ],
1724 [
1725 AC_MSG_RESULT([no])
1726 ])
bart21d3cfc2008-08-02 09:08:17 +00001727 CXXFLAGS="${safe_CXXFLAGS}"
bart62f54e42008-07-28 11:35:10 +00001728 AC_LANG(C)
1729fi
1730
1731
bart4f43e002009-11-09 16:07:43 +00001732# Test for QAtomicInt, which has been introduced in Qt 4.4.
1733# See also http://doc.trolltech.com/4.4/qatomicint.html.
1734if test x$ac_have_qtcore = xyes; then
bart9da08ba2009-11-11 19:22:05 +00001735 AC_MSG_CHECKING([for Qt4 QAtomicInt])
bart4f43e002009-11-09 16:07:43 +00001736 AC_LANG(C++)
1737 safe_CXXFLAGS="${CXXFLAGS}"
1738 CXXFLAGS="${QTCORE_CFLAGS} $mflag_primary"
1739 AC_TRY_COMPILE([
1740 #include <QtCore/QAtomicInt>
1741 ],
1742 [
1743 QAtomicInt I;
1744 I.testAndSetOrdered(0, 1);
1745 return 0;
1746 ],
1747 [
1748 ac_have_qtcore_qatomicint=yes
1749 AC_MSG_RESULT([yes])
1750 AC_DEFINE([HAVE_QTCORE_QATOMICINT], [1], [Define to 1 if the installed version of Qt4 provides QAtomicInt.])
1751 ],
1752 [
1753 ac_have_qtcore_qatomicint=no
1754 AC_MSG_RESULT([no])
1755 ])
1756 CXXFLAGS="${safe_CXXFLAGS}"
1757 AC_LANG(C)
1758fi
1759
1760AM_CONDITIONAL([HAVE_QTCORE_QATOMICINT], [test x$ac_have_qtcore_qatomicint = xyes])
1761
1762
1763
sewardj493c4ef2008-12-13 16:45:19 +00001764# Check whether the boost library 1.35 or later has been installed.
1765# The Boost.Threads library has undergone a major rewrite in version 1.35.0.
1766
1767AC_MSG_CHECKING([for boost])
1768
1769AC_LANG(C++)
1770safe_CXXFLAGS=$CXXFLAGS
1771CXXFLAGS="-lboost_thread-mt $mflag_primary"
1772
1773AC_LINK_IFELSE(
1774[
1775#include <boost/thread.hpp>
1776static void thread_func(void)
1777{ }
1778int main(int argc, char** argv)
1779{
1780 boost::thread t(thread_func);
1781 return 0;
1782}
1783],
1784[
1785ac_have_boost_1_35=yes
1786AC_SUBST([BOOST_CFLAGS], [])
1787AC_SUBST([BOOST_LIBS], ["${CXXFLAGS}"])
1788AC_MSG_RESULT([yes])
1789], [
1790ac_have_boost_1_35=no
1791AC_MSG_RESULT([no])
1792])
1793
1794CXXFLAGS=$safe_CXXFLAGS
1795AC_LANG(C)
1796
1797AM_CONDITIONAL([HAVE_BOOST_1_35], [test x$ac_have_boost_1_35 = xyes])
1798
1799
1800# does this compiler support -fopenmp, does it have the include file
1801# <omp.h> and does it have libgomp ?
1802
1803AC_MSG_CHECKING([for OpenMP])
1804
1805safe_CFLAGS=$CFLAGS
sewardjc876a2f2009-01-22 22:44:30 +00001806CFLAGS="-fopenmp $mflag_primary"
sewardj493c4ef2008-12-13 16:45:19 +00001807
1808AC_LINK_IFELSE(
1809[
1810#include <omp.h>
1811int main(int argc, char** argv)
1812{
1813 omp_set_dynamic(0);
1814 return 0;
1815}
1816],
1817[
1818ac_have_openmp=yes
1819AC_MSG_RESULT([yes])
1820], [
1821ac_have_openmp=no
1822AC_MSG_RESULT([no])
1823])
1824CFLAGS=$safe_CFLAGS
1825
1826AM_CONDITIONAL([HAVE_OPENMP], [test x$ac_have_openmp = xyes])
1827
1828
sewardjc876a2f2009-01-22 22:44:30 +00001829# does this compiler have built-in functions for atomic memory access ?
1830AC_MSG_CHECKING([if gcc supports __sync_bool_compare_and_swap])
1831
1832safe_CFLAGS=$CFLAGS
1833CFLAGS="$mflag_primary"
1834
1835AC_TRY_LINK(,
1836[
1837 int variable = 1;
1838 return (__sync_bool_compare_and_swap(&variable, 1, 2)
1839 && __sync_add_and_fetch(&variable, 1) ? 1 : 0)
1840],
1841[
bartc82d1372009-05-31 16:21:23 +00001842 ac_have_builtin_atomic=yes
sewardjc876a2f2009-01-22 22:44:30 +00001843 AC_MSG_RESULT([yes])
1844 AC_DEFINE(HAVE_BUILTIN_ATOMIC, 1, [Define to 1 if gcc supports __sync_bool_compare_and_swap() a.o.])
1845],
1846[
bartc82d1372009-05-31 16:21:23 +00001847 ac_have_builtin_atomic=no
sewardjc876a2f2009-01-22 22:44:30 +00001848 AC_MSG_RESULT([no])
1849])
1850
1851CFLAGS=$safe_CFLAGS
1852
bartc82d1372009-05-31 16:21:23 +00001853AM_CONDITIONAL([HAVE_BUILTIN_ATOMIC], [test x$ac_have_builtin_atomic = xyes])
1854
sewardjc876a2f2009-01-22 22:44:30 +00001855
njn7fd6d382009-01-22 21:56:32 +00001856#----------------------------------------------------------------------------
1857# Ok. We're done checking.
1858#----------------------------------------------------------------------------
sewardj80637752006-03-02 13:48:21 +00001859
njn8b68b642009-06-24 00:37:09 +00001860# Nb: VEX/Makefile is generated from Makefile.vex.in.
1861AC_CONFIG_FILES([
sewardjde4a1d02002-03-22 01:27:54 +00001862 Makefile
njn8b68b642009-06-24 00:37:09 +00001863 VEX/Makefile:Makefile.vex.in
njn25cac76cb2002-09-23 11:21:57 +00001864 valgrind.spec
muellerbddd6072003-11-19 21:50:07 +00001865 valgrind.pc
dirk07596a22008-04-25 11:33:30 +00001866 glibc-2.X.supp
njn254d542432002-09-23 16:09:39 +00001867 docs/Makefile
1868 tests/Makefile
njnc2e7f482002-09-27 08:44:17 +00001869 tests/vg_regtest
njnec0c27a2005-12-10 23:11:28 +00001870 perf/Makefile
1871 perf/vg_perf
njn254d542432002-09-23 16:09:39 +00001872 include/Makefile
njn7a6e7462002-11-09 17:53:30 +00001873 auxprogs/Makefile
njn8b68b642009-06-24 00:37:09 +00001874 mpi/Makefile
njn25ab726032002-09-23 16:24:41 +00001875 coregrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001876 memcheck/Makefile
1877 memcheck/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001878 memcheck/tests/amd64/Makefile
njnc6168192004-11-29 13:54:10 +00001879 memcheck/tests/x86/Makefile
njn3b3b76d2009-01-19 03:44:19 +00001880 memcheck/tests/linux/Makefile
njnf76d27a2009-05-28 01:53:07 +00001881 memcheck/tests/darwin/Makefile
njna454ec02009-01-19 03:16:59 +00001882 memcheck/tests/x86-linux/Makefile
njn29a5c012009-05-06 06:15:55 +00001883 memcheck/perf/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001884 cachegrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001885 cachegrind/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001886 cachegrind/tests/x86/Makefile
njnf2df9b52002-10-04 11:35:47 +00001887 cachegrind/cg_annotate
weidendoa17f2a32006-03-20 10:27:30 +00001888 callgrind/Makefile
1889 callgrind/callgrind_annotate
1890 callgrind/callgrind_control
1891 callgrind/tests/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001892 helgrind/Makefile
njnf2df9b52002-10-04 11:35:47 +00001893 helgrind/tests/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001894 massif/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001895 massif/tests/Makefile
njn734b8052007-11-01 04:40:37 +00001896 massif/perf/Makefile
njnd5a8d242007-11-02 20:44:57 +00001897 massif/ms_print
njn25cac76cb2002-09-23 11:21:57 +00001898 lackey/Makefile
njnf2df9b52002-10-04 11:35:47 +00001899 lackey/tests/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001900 none/Makefile
1901 none/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001902 none/tests/amd64/Makefile
cerion85665ca2005-06-20 15:51:07 +00001903 none/tests/ppc32/Makefile
sewardj2c48c7b2005-11-29 13:05:56 +00001904 none/tests/ppc64/Makefile
njnc6168192004-11-29 13:54:10 +00001905 none/tests/x86/Makefile
sewardj59570ff2010-01-01 11:59:33 +00001906 none/tests/arm/Makefile
njn0458a122009-02-13 06:23:46 +00001907 none/tests/linux/Makefile
njnf76d27a2009-05-28 01:53:07 +00001908 none/tests/darwin/Makefile
njn06ca3322009-04-15 23:10:04 +00001909 none/tests/x86-linux/Makefile
sewardj9c606bd2008-09-18 18:12:50 +00001910 exp-ptrcheck/Makefile
1911 exp-ptrcheck/tests/Makefile
bartccf17de2008-07-04 15:14:35 +00001912 drd/Makefile
bartccf17de2008-07-04 15:14:35 +00001913 drd/scripts/download-and-build-splash2
1914 drd/tests/Makefile
njndbebecc2009-07-14 01:39:54 +00001915 exp-bbv/Makefile
njndbebecc2009-07-14 01:39:54 +00001916 exp-bbv/tests/Makefile
1917 exp-bbv/tests/x86/Makefile
1918 exp-bbv/tests/x86-linux/Makefile
1919 exp-bbv/tests/amd64-linux/Makefile
1920 exp-bbv/tests/ppc32-linux/Makefile
vince226e0782010-01-06 15:22:11 +00001921 exp-bbv/tests/arm-linux/Makefile
njn8b68b642009-06-24 00:37:09 +00001922])
1923AC_OUTPUT
gobry3b777892002-04-04 09:18:39 +00001924
1925cat<<EOF
1926
njn311303f2009-02-06 03:46:50 +00001927 Maximum build arch: ${ARCH_MAX}
1928 Primary build arch: ${VGCONF_ARCH_PRI}
njn3f8a6e92009-06-02 00:20:47 +00001929 Secondary build arch: ${VGCONF_ARCH_SEC}
njn311303f2009-02-06 03:46:50 +00001930 Build OS: ${VGCONF_OS}
njn7fd6d382009-01-22 21:56:32 +00001931 Primary build target: ${VGCONF_PLATFORM_PRI_CAPS}
1932 Secondary build target: ${VGCONF_PLATFORM_SEC_CAPS}
sewardje95d94f2008-09-19 09:02:19 +00001933 Default supp files: ${DEFAULT_SUPP}
gobry3b777892002-04-04 09:18:39 +00001934
gobry3b777892002-04-04 09:18:39 +00001935EOF