blob: eb30cd01c38a19e7bf7f0c0e507c134c97144f79 [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
921AC_MSG_CHECKING([for pthread_mutex_t::__m_kind])
922
bart56730cd2008-05-11 06:41:46 +0000923AC_TRY_COMPILE(
bart5e389f12008-04-05 12:53:15 +0000924[
bart56730cd2008-05-11 06:41:46 +0000925 #include <pthread.h>
926], [
bart5e389f12008-04-05 12:53:15 +0000927 pthread_mutex_t m;
928 return m.__m_kind;
bart56730cd2008-05-11 06:41:46 +0000929], [
bart5e389f12008-04-05 12:53:15 +0000930AC_MSG_RESULT([yes])
931AC_DEFINE([HAVE_PTHREAD_MUTEX_T__M_KIND], 1,
932 [Define to 1 if pthread_mutex_t has a member called __m_kind.])
933], [
934AC_MSG_RESULT([no])
935])
936
937
938# Check whether pthread_mutex_t has a member called __data.__kind.
939
940AC_MSG_CHECKING([for pthread_mutex_t::__data.__kind])
941
bart56730cd2008-05-11 06:41:46 +0000942AC_TRY_COMPILE(
bart5e389f12008-04-05 12:53:15 +0000943[
bart56730cd2008-05-11 06:41:46 +0000944#include <pthread.h>
945], [
bart5e389f12008-04-05 12:53:15 +0000946 pthread_mutex_t m;
947 return m.__data.__kind;
bart56730cd2008-05-11 06:41:46 +0000948], [
bart5e389f12008-04-05 12:53:15 +0000949AC_MSG_RESULT([yes])
950AC_DEFINE([HAVE_PTHREAD_MUTEX_T__DATA__KIND], 1,
951 [Define to 1 if pthread_mutex_t has a member __data.__kind.])
952], [
953AC_MSG_RESULT([no])
954])
955
956
bart62c370e2008-05-12 18:50:51 +0000957# does this compiler support -maltivec and does it have the include file
958# <altivec.h> ?
959
960AC_MSG_CHECKING([for Altivec])
961
962safe_CFLAGS=$CFLAGS
963CFLAGS="-maltivec"
964
965AC_TRY_COMPILE(
966[
967#include <altivec.h>
968], [
969 vector unsigned int v;
970],
971[
972ac_have_altivec=yes
973AC_MSG_RESULT([yes])
974], [
975ac_have_altivec=no
976AC_MSG_RESULT([no])
977])
978CFLAGS=$safe_CFLAGS
979
980AM_CONDITIONAL([HAS_ALTIVEC], [test x$ac_have_altivec = xyes])
981AM_CONDITIONAL([HAVE_ALTIVEC_H], [test x$ac_have_altivec = xyes])
982
983
bart36dd85a2009-04-26 07:11:48 +0000984# Check for pthread_create@GLIBC2.0
985AC_MSG_CHECKING([for pthread_create@GLIBC2.0()])
986
bart16e1c5a2009-04-26 07:38:53 +0000987safe_CFLAGS=$CFLAGS
988CFLAGS="-lpthread"
bart36dd85a2009-04-26 07:11:48 +0000989AC_TRY_LINK(
990[
991extern int pthread_create_glibc_2_0(void*, const void*,
992 void *(*)(void*), void*);
993__asm__(".symver pthread_create_glibc_2_0, pthread_create@GLIBC_2.0");
994], [
bart276ed3a2009-05-10 15:41:45 +0000995#ifdef __powerpc__
996/*
997 * Apparently on PowerPC linking this program succeeds and generates an
998 * executable with the undefined symbol pthread_create@GLIBC_2.0.
999 */
1000#error This test does not work properly on PowerPC.
1001#else
bart16e1c5a2009-04-26 07:38:53 +00001002 pthread_create_glibc_2_0(0, 0, 0, 0);
bart276ed3a2009-05-10 15:41:45 +00001003#endif
bart16e1c5a2009-04-26 07:38:53 +00001004 return 0;
bart36dd85a2009-04-26 07:11:48 +00001005],
1006[
1007ac_have_pthread_create_glibc_2_0=yes
1008AC_MSG_RESULT([yes])
1009AC_DEFINE([HAVE_PTHREAD_CREATE_GLIBC_2_0], 1,
1010 [Define to 1 if you have the `pthread_create@glibc2.0' function.])
1011], [
1012ac_have_pthread_create_glibc_2_0=no
1013AC_MSG_RESULT([no])
1014])
bart16e1c5a2009-04-26 07:38:53 +00001015CFLAGS=$safe_CFLAGS
bart36dd85a2009-04-26 07:11:48 +00001016
1017AM_CONDITIONAL(HAVE_PTHREAD_CREATE_GLIBC_2_0,
bart24f53902009-04-26 11:29:02 +00001018 test x$ac_have_pthread_create_glibc_2_0 = xyes)
bart36dd85a2009-04-26 07:11:48 +00001019
1020
barta50aa8a2008-04-27 06:06:57 +00001021# Check for eventfd_t, eventfd() and eventfd_read()
1022AC_MSG_CHECKING([for eventfd()])
1023
1024AC_TRY_LINK(
1025[
1026#include <sys/eventfd.h>
1027], [
1028 eventfd_t ev;
1029 int fd;
1030
1031 fd = eventfd(5, 0);
1032 eventfd_read(fd, &ev);
1033 return 0;
1034],
1035[
1036AC_MSG_RESULT([yes])
1037AC_DEFINE([HAVE_EVENTFD], 1,
1038 [Define to 1 if you have the `eventfd' function.])
1039AC_DEFINE([HAVE_EVENTFD_READ], 1,
1040 [Define to 1 if you have the `eventfd_read' function.])
1041], [
1042AC_MSG_RESULT([no])
1043])
1044
1045
njn7fd6d382009-01-22 21:56:32 +00001046#----------------------------------------------------------------------------
1047# Checking for supported compiler flags.
1048#----------------------------------------------------------------------------
1049
sewardj535c50f2005-06-04 23:14:53 +00001050# does this compiler support -m32 ?
1051AC_MSG_CHECKING([if gcc accepts -m32])
1052
1053safe_CFLAGS=$CFLAGS
1054CFLAGS="-m32"
1055
1056AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001057 return 0;
sewardj535c50f2005-06-04 23:14:53 +00001058],
1059[
1060FLAG_M32="-m32"
1061AC_MSG_RESULT([yes])
1062], [
1063FLAG_M32=""
1064AC_MSG_RESULT([no])
1065])
1066CFLAGS=$safe_CFLAGS
1067
1068AC_SUBST(FLAG_M32)
1069
1070
sewardj03d86f22006-10-17 00:57:24 +00001071# does this compiler support -maix32 ?
1072AC_MSG_CHECKING([if gcc accepts -maix32])
1073
1074safe_CFLAGS=$CFLAGS
1075CFLAGS="-maix32"
1076
1077AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001078 return 0;
sewardj03d86f22006-10-17 00:57:24 +00001079],
1080[
1081FLAG_MAIX32="-maix32"
1082AC_MSG_RESULT([yes])
1083], [
1084FLAG_MAIX32=""
1085AC_MSG_RESULT([no])
1086])
1087CFLAGS=$safe_CFLAGS
1088
1089AC_SUBST(FLAG_MAIX32)
1090
1091
sewardj01262142006-01-04 01:20:28 +00001092# does this compiler support -m64 ?
1093AC_MSG_CHECKING([if gcc accepts -m64])
1094
1095safe_CFLAGS=$CFLAGS
1096CFLAGS="-m64"
1097
1098AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001099 return 0;
sewardj01262142006-01-04 01:20:28 +00001100],
1101[
1102FLAG_M64="-m64"
1103AC_MSG_RESULT([yes])
1104], [
1105FLAG_M64=""
1106AC_MSG_RESULT([no])
1107])
1108CFLAGS=$safe_CFLAGS
1109
1110AC_SUBST(FLAG_M64)
1111
1112
sewardj03d86f22006-10-17 00:57:24 +00001113# does this compiler support -maix64 ?
1114AC_MSG_CHECKING([if gcc accepts -maix64])
1115
1116safe_CFLAGS=$CFLAGS
1117CFLAGS="-maix64"
1118
1119AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001120 return 0;
sewardj03d86f22006-10-17 00:57:24 +00001121],
1122[
1123FLAG_MAIX64="-maix64"
1124AC_MSG_RESULT([yes])
1125], [
1126FLAG_MAIX64=""
1127AC_MSG_RESULT([no])
1128])
1129CFLAGS=$safe_CFLAGS
1130
1131AC_SUBST(FLAG_MAIX64)
1132
1133
sewardj67f1fcc2005-07-03 10:41:02 +00001134# does this compiler support -mmmx ?
1135AC_MSG_CHECKING([if gcc accepts -mmmx])
1136
1137safe_CFLAGS=$CFLAGS
1138CFLAGS="-mmmx"
1139
1140AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001141 return 0;
sewardj67f1fcc2005-07-03 10:41:02 +00001142],
1143[
1144FLAG_MMMX="-mmmx"
1145AC_MSG_RESULT([yes])
1146], [
1147FLAG_MMMX=""
1148AC_MSG_RESULT([no])
1149])
1150CFLAGS=$safe_CFLAGS
1151
1152AC_SUBST(FLAG_MMMX)
1153
1154
1155# does this compiler support -msse ?
1156AC_MSG_CHECKING([if gcc accepts -msse])
1157
1158safe_CFLAGS=$CFLAGS
1159CFLAGS="-msse"
1160
1161AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001162 return 0;
sewardj67f1fcc2005-07-03 10:41:02 +00001163],
1164[
1165FLAG_MSSE="-msse"
1166AC_MSG_RESULT([yes])
1167], [
1168FLAG_MSSE=""
1169AC_MSG_RESULT([no])
1170])
1171CFLAGS=$safe_CFLAGS
1172
1173AC_SUBST(FLAG_MSSE)
1174
1175
sewardj5b754b42002-06-03 22:53:35 +00001176# does this compiler support -mpreferred-stack-boundary=2 ?
1177AC_MSG_CHECKING([if gcc accepts -mpreferred-stack-boundary])
1178
daywalker3664f562003-10-17 13:43:46 +00001179safe_CFLAGS=$CFLAGS
sewardj5b754b42002-06-03 22:53:35 +00001180CFLAGS="-mpreferred-stack-boundary=2"
1181
1182AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001183 return 0;
sewardj5b754b42002-06-03 22:53:35 +00001184],
1185[
1186PREFERRED_STACK_BOUNDARY="-mpreferred-stack-boundary=2"
daywalker3664f562003-10-17 13:43:46 +00001187AC_MSG_RESULT([yes])
sewardj5b754b42002-06-03 22:53:35 +00001188], [
1189PREFERRED_STACK_BOUNDARY=""
1190AC_MSG_RESULT([no])
1191])
daywalker3664f562003-10-17 13:43:46 +00001192CFLAGS=$safe_CFLAGS
sewardj5b754b42002-06-03 22:53:35 +00001193
1194AC_SUBST(PREFERRED_STACK_BOUNDARY)
1195
sewardj535c50f2005-06-04 23:14:53 +00001196
sewardjb5f6f512005-03-10 23:59:00 +00001197# does this compiler support -Wno-pointer-sign ?
bart56730cd2008-05-11 06:41:46 +00001198AC_MSG_CHECKING([if gcc accepts -Wno-pointer-sign])
sewardjb5f6f512005-03-10 23:59:00 +00001199
1200safe_CFLAGS=$CFLAGS
1201CFLAGS="-Wno-pointer-sign"
1202
1203AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001204 return 0;
sewardjb5f6f512005-03-10 23:59:00 +00001205],
1206[
1207no_pointer_sign=yes
1208AC_MSG_RESULT([yes])
1209], [
1210no_pointer_sign=no
1211AC_MSG_RESULT([no])
1212])
1213CFLAGS=$safe_CFLAGS
1214
1215if test x$no_pointer_sign = xyes; then
1216 CFLAGS="$CFLAGS -Wno-pointer-sign"
1217fi
1218
sewardj535c50f2005-06-04 23:14:53 +00001219
barte026bd22009-07-04 12:17:07 +00001220# does this compiler support -Wno-empty-body ?
1221
1222AC_MSG_CHECKING([if gcc accepts -Wno-empty-body])
1223
1224safe_CFLAGS=$CFLAGS
1225CFLAGS="-Wno-empty-body"
1226
1227AC_TRY_COMPILE(
1228[ ],
1229[
1230 return 0;
1231],
1232[
1233AC_SUBST([FLAG_W_NO_EMPTY_BODY], [-Wno-empty-body])
1234AC_MSG_RESULT([yes])
1235],
1236[
1237AC_SUBST([FLAG_W_NO_EMPTY_BODY], [])
1238AC_MSG_RESULT([no])
1239])
1240CFLAGS=$safe_CFLAGS
1241
1242
bart9d865fa2008-06-23 12:11:49 +00001243# does this compiler support -Wno-format-zero-length ?
1244
1245AC_MSG_CHECKING([if gcc accepts -Wno-format-zero-length])
1246
1247safe_CFLAGS=$CFLAGS
1248CFLAGS="-Wno-format-zero-length"
1249
1250AC_TRY_COMPILE(
1251[ ],
1252[
1253 return 0;
1254],
1255[
1256AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [-Wno-format-zero-length])
1257AC_MSG_RESULT([yes])
1258],
1259[
1260AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [])
1261AC_MSG_RESULT([no])
1262])
1263CFLAGS=$safe_CFLAGS
1264
1265
bartbf9b85c2009-08-12 12:55:56 +00001266# does this compiler support -Wno-uninitialized ?
1267
1268AC_MSG_CHECKING([if gcc accepts -Wno-uninitialized])
1269
1270safe_CFLAGS=$CFLAGS
1271CFLAGS="-Wno-uninitialized"
1272
1273AC_TRY_COMPILE(
1274[ ],
1275[
1276 return 0;
1277],
1278[
1279AC_SUBST([FLAG_W_NO_UNINITIALIZED], [-Wno-uninitialized])
1280AC_MSG_RESULT([yes])
1281],
1282[
1283AC_SUBST([FLAG_W_NO_UNINITIALIZED], [])
1284AC_MSG_RESULT([no])
1285])
1286CFLAGS=$safe_CFLAGS
1287
1288
bart56730cd2008-05-11 06:41:46 +00001289# does this compiler support -Wextra or the older -W ?
1290
1291AC_MSG_CHECKING([if gcc accepts -Wextra or -W])
1292
1293safe_CFLAGS=$CFLAGS
1294CFLAGS="-Wextra"
1295
1296AC_TRY_COMPILE(
1297[ ],
1298[
1299 return 0;
1300],
1301[
1302AC_SUBST([FLAG_W_EXTRA], [-Wextra])
1303AC_MSG_RESULT([-Wextra])
1304], [
1305 CFLAGS="-W"
1306 AC_TRY_COMPILE(
1307 [ ],
1308 [
1309 return 0;
1310 ],
1311 [
1312 AC_SUBST([FLAG_W_EXTRA], [-W])
1313 AC_MSG_RESULT([-W])
1314 ], [
1315 AC_SUBST([FLAG_W_EXTRA], [])
1316 AC_MSG_RESULT([not supported])
1317 ])
1318])
1319CFLAGS=$safe_CFLAGS
1320
1321
sewardja72c26d2007-05-01 13:44:08 +00001322# does this compiler support -fno-stack-protector ?
bart56730cd2008-05-11 06:41:46 +00001323AC_MSG_CHECKING([if gcc accepts -fno-stack-protector])
sewardja72c26d2007-05-01 13:44:08 +00001324
1325safe_CFLAGS=$CFLAGS
1326CFLAGS="-fno-stack-protector"
1327
1328AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001329 return 0;
sewardja72c26d2007-05-01 13:44:08 +00001330],
1331[
1332no_stack_protector=yes
1333FLAG_FNO_STACK_PROTECTOR="-fno-stack-protector"
1334AC_MSG_RESULT([yes])
1335], [
1336no_stack_protector=no
1337FLAG_FNO_STACK_PROTECTOR=""
1338AC_MSG_RESULT([no])
1339])
1340CFLAGS=$safe_CFLAGS
1341
1342AC_SUBST(FLAG_FNO_STACK_PROTECTOR)
1343
1344if test x$no_stack_protector = xyes; then
1345 CFLAGS="$CFLAGS -fno-stack-protector"
1346fi
1347
1348
bart56730cd2008-05-11 06:41:46 +00001349# does this compiler support --param inline-unit-growth=... ?
1350
1351AC_MSG_CHECKING([if gcc accepts --param inline-unit-growth])
1352
1353safe_CFLAGS=$CFLAGS
1354CFLAGS="--param inline-unit-growth=900"
1355
1356AC_TRY_COMPILE(
1357[ ],
1358[
1359 return 0;
1360],
1361[
1362AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH],
1363 ["--param inline-unit-growth=900"])
1364AC_MSG_RESULT([yes])
1365], [
1366AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH], [""])
1367AC_MSG_RESULT([no])
1368])
1369CFLAGS=$safe_CFLAGS
1370
1371
sewardj00f1e622006-03-12 16:47:10 +00001372# does the ppc assembler support "mtocrf" et al?
1373AC_MSG_CHECKING([if ppc32/64 as supports mtocrf/mfocrf])
1374
1375AC_TRY_COMPILE(, [
sewardjdd4cbe12006-03-12 17:27:44 +00001376__asm__ __volatile__("mtocrf 4,0");
1377__asm__ __volatile__("mfocrf 0,4");
sewardj00f1e622006-03-12 16:47:10 +00001378],
1379[
1380ac_have_as_ppc_mftocrf=yes
1381AC_MSG_RESULT([yes])
1382], [
1383ac_have_as_ppc_mftocrf=no
1384AC_MSG_RESULT([no])
1385])
1386if test x$ac_have_as_ppc_mftocrf = xyes ; then
1387 AC_DEFINE(HAVE_AS_PPC_MFTOCRF, 1, [Define to 1 if as supports mtocrf/mfocrf.])
1388fi
1389
1390
sewardjf0aabf82007-03-22 00:24:21 +00001391# does the x86/amd64 assembler understand SSE3 instructions?
sewardjfa18a262007-03-22 12:13:13 +00001392# Note, this doesn't generate a C-level symbol. It generates a
1393# automake-level symbol (BUILD_SSE3_TESTS), used in test Makefile.am's
sewardjf0aabf82007-03-22 00:24:21 +00001394AC_MSG_CHECKING([if x86/amd64 assembler speaks SSE3])
1395
1396AC_TRY_COMPILE(, [
1397 do { long long int x;
1398 __asm__ __volatile__("fisttpq (%0)" : :"r"(&x) ); }
1399 while (0)
1400],
1401[
1402ac_have_as_sse3=yes
1403AC_MSG_RESULT([yes])
1404], [
1405ac_have_as_sse3=no
1406AC_MSG_RESULT([no])
1407])
sewardjfa18a262007-03-22 12:13:13 +00001408
1409AM_CONDITIONAL(BUILD_SSE3_TESTS, test x$ac_have_as_sse3 = xyes)
sewardjf0aabf82007-03-22 00:24:21 +00001410
1411
sewardj6d6da5b2008-02-09 12:07:40 +00001412# Ditto for SSSE3 instructions (note extra S)
1413# Note, this doesn't generate a C-level symbol. It generates a
1414# automake-level symbol (BUILD_SSSE3_TESTS), used in test Makefile.am's
1415AC_MSG_CHECKING([if x86/amd64 assembler speaks SSSE3])
1416
1417AC_TRY_COMPILE(, [
1418 do { long long int x;
1419 __asm__ __volatile__(
1420 "pabsb (%0),%%xmm7" : : "r"(&x) : "xmm7" ); }
1421 while (0)
1422],
1423[
1424ac_have_as_ssse3=yes
1425AC_MSG_RESULT([yes])
1426], [
1427ac_have_as_ssse3=no
1428AC_MSG_RESULT([no])
1429])
1430
1431AM_CONDITIONAL(BUILD_SSSE3_TESTS, test x$ac_have_as_ssse3 = xyes)
1432
1433
sewardjb5f6f512005-03-10 23:59:00 +00001434# Check for TLS support in the compiler and linker
bartca9f2ad2008-06-02 07:14:20 +00001435if test "x${cross_compiling}" = "xno"; then
1436# Native compilation: check whether running a program using TLS succeeds.
1437# Linking only is not sufficient -- e.g. on Red Hat 7.3 linking TLS programs
1438# succeeds but running programs using TLS fails.
1439AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1440 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1441 [vg_cv_tls=$enableval],
1442 [AC_RUN_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
1443 [[return foo;]])],
1444 [vg_cv_tls=yes],
1445 [vg_cv_tls=no])])])
1446else
1447# Cross-compiling: check whether linking a program using TLS succeeds.
sewardjb5f6f512005-03-10 23:59:00 +00001448AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1449 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1450 [vg_cv_tls=$enableval],
bartcddeaf52008-05-25 15:58:11 +00001451 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
sewardjb5f6f512005-03-10 23:59:00 +00001452 [[return foo;]])],
1453 [vg_cv_tls=yes],
1454 [vg_cv_tls=no])])])
bartca9f2ad2008-06-02 07:14:20 +00001455fi
sewardjb5f6f512005-03-10 23:59:00 +00001456
1457if test "$vg_cv_tls" = yes; then
1458AC_DEFINE([HAVE_TLS], 1, [can use __thread to define thread-local variables])
1459fi
sewardj5b754b42002-06-03 22:53:35 +00001460
sewardj535c50f2005-06-04 23:14:53 +00001461
njn7fd6d382009-01-22 21:56:32 +00001462#----------------------------------------------------------------------------
bart62f54e42008-07-28 11:35:10 +00001463# Checks for C header files.
njn7fd6d382009-01-22 21:56:32 +00001464#----------------------------------------------------------------------------
1465
sewardjde4a1d02002-03-22 01:27:54 +00001466AC_HEADER_STDC
bartf5ceec82008-04-26 07:45:10 +00001467AC_CHECK_HEADERS([ \
bart1f2b1432009-01-16 12:06:54 +00001468 asm/unistd.h \
bartf5ceec82008-04-26 07:45:10 +00001469 endian.h \
1470 mqueue.h \
1471 sys/endian.h \
1472 sys/epoll.h \
1473 sys/eventfd.h \
bartce48fa92008-04-26 10:59:46 +00001474 sys/klog.h \
bartf5ceec82008-04-26 07:45:10 +00001475 sys/poll.h \
bart71bad292008-04-27 11:43:23 +00001476 sys/signal.h \
bartf5ceec82008-04-26 07:45:10 +00001477 sys/signalfd.h \
bart71bad292008-04-27 11:43:23 +00001478 sys/syscall.h \
1479 sys/time.h \
1480 sys/types.h \
bartf5ceec82008-04-26 07:45:10 +00001481 ])
sewardjde4a1d02002-03-22 01:27:54 +00001482
njn7fd6d382009-01-22 21:56:32 +00001483#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001484# Checks for typedefs, structures, and compiler characteristics.
njn7fd6d382009-01-22 21:56:32 +00001485#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001486AC_TYPE_UID_T
1487AC_TYPE_OFF_T
1488AC_TYPE_SIZE_T
1489AC_HEADER_TIME
1490
sewardj535c50f2005-06-04 23:14:53 +00001491
njn7fd6d382009-01-22 21:56:32 +00001492#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001493# Checks for library functions.
njn7fd6d382009-01-22 21:56:32 +00001494#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001495AC_FUNC_MEMCMP
1496AC_FUNC_MMAP
1497AC_TYPE_SIGNAL
1498
bart71bad292008-04-27 11:43:23 +00001499AC_CHECK_LIB([rt], [clock_gettime])
bart41ac62a2008-07-07 16:58:03 +00001500
bartf5ceec82008-04-26 07:45:10 +00001501AC_CHECK_FUNCS([ \
bart71bad292008-04-27 11:43:23 +00001502 clock_gettime\
bartf5ceec82008-04-26 07:45:10 +00001503 epoll_create \
1504 epoll_pwait \
bartf5ceec82008-04-26 07:45:10 +00001505 floor \
bartce48fa92008-04-26 10:59:46 +00001506 klogctl \
bartf5ceec82008-04-26 07:45:10 +00001507 mallinfo \
1508 memchr \
1509 memset \
1510 mkdir \
njnf76d27a2009-05-28 01:53:07 +00001511 mremap \
bartf5ceec82008-04-26 07:45:10 +00001512 ppoll \
bart6d45e922009-01-20 13:45:38 +00001513 pthread_barrier_init \
1514 pthread_condattr_setclock \
1515 pthread_mutex_timedlock \
1516 pthread_rwlock_timedrdlock \
1517 pthread_rwlock_timedwrlock \
1518 pthread_spin_lock \
bartd1f724c2009-08-26 18:11:18 +00001519 readlinkat \
bartf5ceec82008-04-26 07:45:10 +00001520 semtimedop \
1521 signalfd \
njn6cc22472009-03-16 03:46:48 +00001522 sigwaitinfo \
bart71bad292008-04-27 11:43:23 +00001523 syscall \
bartf5ceec82008-04-26 07:45:10 +00001524 strchr \
1525 strdup \
1526 strpbrk \
1527 strrchr \
1528 strstr \
1529 timerfd \
1530 utimensat \
1531 ])
sewardjde4a1d02002-03-22 01:27:54 +00001532
bart623eec32008-07-29 17:54:49 +00001533# AC_CHECK_LIB adds any library found to the variable LIBS, and links these
1534# libraries with any shared object and/or executable. This is NOT what we
1535# want for e.g. vgpreload_core-x86-linux.so
1536LIBS=""
sewardj80637752006-03-02 13:48:21 +00001537
bart6d45e922009-01-20 13:45:38 +00001538AM_CONDITIONAL([HAVE_PTHREAD_BARRIER],
1539 [test x$ac_cv_func_pthread_barrier_init = xyes])
bart2eaa8f22009-01-20 14:01:16 +00001540AM_CONDITIONAL([HAVE_PTHREAD_MUTEX_TIMEDLOCK],
1541 [test x$ac_cv_func_pthread_mutex_timedlock = xyes])
bart6d45e922009-01-20 13:45:38 +00001542AM_CONDITIONAL([HAVE_PTHREAD_SPINLOCK],
1543 [test x$ac_cv_func_pthread_spin_lock = xyes])
1544
njn7fd6d382009-01-22 21:56:32 +00001545
1546#----------------------------------------------------------------------------
1547# MPI checks
1548#----------------------------------------------------------------------------
sewardj03d86f22006-10-17 00:57:24 +00001549# Do we have a useable MPI setup on the primary and/or secondary targets?
1550# On Linux, by default, assumes mpicc and -m32/-m64
1551# On AIX, by default, assumes mpxlc and -q32/-q64
sewardje9fa5062006-03-12 18:29:18 +00001552# Note: this is a kludge in that it assumes the specified mpicc
sewardj03d86f22006-10-17 00:57:24 +00001553# understands -m32/-m64/-q32/-q64 regardless of what is specified using
1554# --with-mpicc=.
sewardj0ad46092006-03-02 17:09:16 +00001555MPI_CC="mpicc"
njn7fd6d382009-01-22 21:56:32 +00001556if test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
1557 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001558 MPI_CC="mpxlc"
1559fi
1560
sewardje9fa5062006-03-12 18:29:18 +00001561mflag_primary=
njn7fd6d382009-01-22 21:56:32 +00001562if test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
1563 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX ; then
sewardje9fa5062006-03-12 18:29:18 +00001564 mflag_primary=$FLAG_M32
njn7fd6d382009-01-22 21:56:32 +00001565elif test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \
1566 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX ; then
sewardje9fa5062006-03-12 18:29:18 +00001567 mflag_primary=$FLAG_M64
njn7fd6d382009-01-22 21:56:32 +00001568elif test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001569 mflag_primary=-q32
njn7fd6d382009-01-22 21:56:32 +00001570elif test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001571 mflag_primary=-q64
sewardje9fa5062006-03-12 18:29:18 +00001572fi
1573
sewardj03d86f22006-10-17 00:57:24 +00001574mflag_secondary=
njn7fd6d382009-01-22 21:56:32 +00001575if test x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX \
1576 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX ; then
sewardj03d86f22006-10-17 00:57:24 +00001577 mflag_secondary=$FLAG_M32
njn7fd6d382009-01-22 21:56:32 +00001578elif test x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001579 mflag_secondary=-q32
1580fi
1581
1582
sewardj0ad46092006-03-02 17:09:16 +00001583AC_ARG_WITH(mpicc,
sewardjb70a6132006-05-27 21:14:09 +00001584 [ --with-mpicc= Specify name of MPI2-ised C compiler],
sewardj0ad46092006-03-02 17:09:16 +00001585 MPI_CC=$withval
1586)
sewardj03d86f22006-10-17 00:57:24 +00001587AC_SUBST(MPI_CC)
1588
1589## See if MPI_CC works for the primary target
1590##
1591AC_MSG_CHECKING([primary target for usable MPI2-compliant C compiler and mpi.h])
sewardj0ad46092006-03-02 17:09:16 +00001592saved_CC=$CC
sewardjde4f3842006-03-09 02:41:41 +00001593saved_CFLAGS=$CFLAGS
sewardj0ad46092006-03-02 17:09:16 +00001594CC=$MPI_CC
sewardje9fa5062006-03-12 18:29:18 +00001595CFLAGS=$mflag_primary
sewardjd3fcc642006-03-09 02:49:56 +00001596AC_TRY_LINK([
sewardj1a85e602006-03-08 15:26:10 +00001597#include <mpi.h>
1598#include <stdio.h>
sewardjde4f3842006-03-09 02:41:41 +00001599],[
1600 int r = MPI_Init(NULL,NULL);
1601 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1602 return r;
1603], [
sewardj03d86f22006-10-17 00:57:24 +00001604ac_have_mpi2_pri=yes
sewardj1a85e602006-03-08 15:26:10 +00001605AC_MSG_RESULT([yes, $MPI_CC])
sewardj80637752006-03-02 13:48:21 +00001606], [
sewardj03d86f22006-10-17 00:57:24 +00001607ac_have_mpi2_pri=no
sewardj80637752006-03-02 13:48:21 +00001608AC_MSG_RESULT([no])
1609])
sewardj0ad46092006-03-02 17:09:16 +00001610CC=$saved_CC
sewardjde4f3842006-03-09 02:41:41 +00001611CFLAGS=$saved_CFLAGS
sewardj03d86f22006-10-17 00:57:24 +00001612AM_CONDITIONAL(BUILD_MPIWRAP_PRI, test x$ac_have_mpi2_pri = xyes)
sewardj80637752006-03-02 13:48:21 +00001613
sewardj03d86f22006-10-17 00:57:24 +00001614## See if MPI_CC works for the secondary target. Complication: what if
1615## there is no secondary target? We need this to then fail.
1616## Kludge this by making MPI_CC something which will surely fail in
1617## such a case.
1618##
1619AC_MSG_CHECKING([secondary target for usable MPI2-compliant C compiler and mpi.h])
1620saved_CC=$CC
1621saved_CFLAGS=$CFLAGS
njn7fd6d382009-01-22 21:56:32 +00001622if test x$VGCONF_PLATFORM_SEC_CAPS = x ; then
sewardj03d86f22006-10-17 00:57:24 +00001623 CC="$MPI_CC this will surely fail"
1624else
1625 CC=$MPI_CC
1626fi
1627CFLAGS=$mflag_secondary
1628AC_TRY_LINK([
1629#include <mpi.h>
1630#include <stdio.h>
1631],[
1632 int r = MPI_Init(NULL,NULL);
1633 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1634 return r;
1635], [
1636ac_have_mpi2_sec=yes
1637AC_MSG_RESULT([yes, $MPI_CC])
1638], [
1639ac_have_mpi2_sec=no
1640AC_MSG_RESULT([no])
1641])
1642CC=$saved_CC
1643CFLAGS=$saved_CFLAGS
1644AM_CONDITIONAL(BUILD_MPIWRAP_SEC, test x$ac_have_mpi2_sec = xyes)
sewardj80637752006-03-02 13:48:21 +00001645
1646
njn7fd6d382009-01-22 21:56:32 +00001647#----------------------------------------------------------------------------
1648# Other library checks
1649#----------------------------------------------------------------------------
sewardj493c4ef2008-12-13 16:45:19 +00001650# There now follow some tests for QtCore, Boost, and OpenMP. These
1651# tests are present because Drd has some regression tests that use
1652# these packages. All regression test programs all compiled only
1653# for the primary target. And so it is important that the configure
1654# checks that follow, use the correct -m32 or -m64 flag for the
1655# primary target (called $mflag_primary). Otherwise, we can end up
1656# in a situation (eg) where, on amd64-linux, the test for Boost checks
1657# for usable 64-bit Boost facilities, but because we are doing a 32-bit
1658# only build (meaning, the primary target is x86-linux), the build
1659# of the regtest programs that use Boost fails, because they are
1660# build as 32-bit (IN THIS EXAMPLE).
1661#
1662# Hence: ALWAYS USE $mflag_primary FOR CONFIGURE TESTS FOR FACILITIES
1663# NEEDED BY THE REGRESSION TEST PROGRAMS.
1664
1665
bart21d3cfc2008-08-02 09:08:17 +00001666# The test below verifies whether the QtCore package been installed.
1667# This test works as follows:
1668# - If pkg-config was not installed at the time autogen.sh was run,
1669# the definition of the PKG_CHECK_EXISTS() macro will not be found by
1670# autogen.sh. Augogen.sh will generate a configure script that prints
1671# a warning about pkg-config and proceeds as if Qt4 has not been installed.
1672# - If pkg-config was installed at the time autogen.sh was run,
1673# the generated configure script will try to detect the presence of the
1674# Qt4 QtCore library by looking up compile and linker flags in the file
1675# called QtCore.pc.
1676# - pkg-config settings can be overridden via the configure variables
1677# QTCORE_CFLAGS and QTCORE_LIBS (added by the pkg-config m4 macro's to the
1678# configure script -- see also ./configure --help).
1679# - The QTCORE_CFLAGS and QTCORE_LIBS configure variables can be used even if
1680# the pkg-config executable is not present on the system on which the
1681# configure script is run.
bart41ac62a2008-07-07 16:58:03 +00001682
bart21d3cfc2008-08-02 09:08:17 +00001683ifdef(
1684 [PKG_CHECK_EXISTS],
1685 [PKG_CHECK_EXISTS(
1686 [QtCore],
1687 [
1688 PKG_CHECK_MODULES([QTCORE], [QtCore])
bart11fbd892008-09-21 15:00:58 +00001689 # Paranoia: don't trust the result reported by pkg-config, but when
1690 # pkg-config reports that QtCore has been found, verify whether linking
1691 # programs with QtCore succeeds.
1692 AC_LANG(C++)
1693 safe_CXXFLAGS="${CXXFLAGS}"
sewardj493c4ef2008-12-13 16:45:19 +00001694 CXXFLAGS="${QTCORE_CFLAGS} ${QTCORE_LIBS} $mflag_primary"
bart11fbd892008-09-21 15:00:58 +00001695 AC_TRY_LINK(
1696 [#include <QMutex>],
1697 [QMutex Mutex;],
1698 [ac_have_qtcore=yes],
1699 [
1700 AC_MSG_WARN([Although pkg-config detected Qt4, linking Qt4 programs fails. Skipping Qt4.])
1701 ac_have_qtcore=no
1702 ]
1703 )
1704 CXXFLAGS="${safe_CXXFLAGS}"
bart21d3cfc2008-08-02 09:08:17 +00001705 ],
1706 [
1707 ac_have_qtcore=no
1708 ]
1709 )
1710 ],
1711 AC_MSG_WARN([pkg-config has not been installed or is too old.])
1712 AC_MSG_WARN([Detection of Qt4 will be skipped.])
1713 [ac_have_qtcore=no]
1714)
bart41ac62a2008-07-07 16:58:03 +00001715
1716AM_CONDITIONAL([HAVE_QTCORE], [test x$ac_have_qtcore = xyes])
1717
1718
bart62f54e42008-07-28 11:35:10 +00001719# Test for QMutex::tryLock(int), which has been introduced in Qt 4.3.
1720# See also http://doc.trolltech.com/4.3/qmutex.html.
1721if test x$ac_have_qtcore = xyes; then
1722 AC_MSG_CHECKING([for Qt4 QMutex::tryLock(int)])
1723 AC_LANG(C++)
bart21d3cfc2008-08-02 09:08:17 +00001724 safe_CXXFLAGS="${CXXFLAGS}"
sewardj493c4ef2008-12-13 16:45:19 +00001725 CXXFLAGS="${QTCORE_CFLAGS} $mflag_primary"
bart62f54e42008-07-28 11:35:10 +00001726 AC_TRY_COMPILE([
1727 #include <QtCore/QMutex>
1728 ],
1729 [
1730 QMutex M;
1731 M.tryLock(1);
1732 M.unlock();
1733 return 0;
1734 ],
1735 [
1736 AC_MSG_RESULT([yes])
1737 AC_DEFINE([HAVE_QTCORE_QMUTEX_TRYLOCK_INT], [1], [Define to 1 if the installed version of Qt4 provides QMutex::tryLock(int).])
1738 ],
1739 [
1740 AC_MSG_RESULT([no])
1741 ])
bart21d3cfc2008-08-02 09:08:17 +00001742 CXXFLAGS="${safe_CXXFLAGS}"
bart62f54e42008-07-28 11:35:10 +00001743 AC_LANG(C)
1744fi
1745
1746
bart4f43e002009-11-09 16:07:43 +00001747# Test for QAtomicInt, which has been introduced in Qt 4.4.
1748# See also http://doc.trolltech.com/4.4/qatomicint.html.
1749if test x$ac_have_qtcore = xyes; then
bart9da08ba2009-11-11 19:22:05 +00001750 AC_MSG_CHECKING([for Qt4 QAtomicInt])
bart4f43e002009-11-09 16:07:43 +00001751 AC_LANG(C++)
1752 safe_CXXFLAGS="${CXXFLAGS}"
1753 CXXFLAGS="${QTCORE_CFLAGS} $mflag_primary"
1754 AC_TRY_COMPILE([
1755 #include <QtCore/QAtomicInt>
1756 ],
1757 [
1758 QAtomicInt I;
1759 I.testAndSetOrdered(0, 1);
1760 return 0;
1761 ],
1762 [
1763 ac_have_qtcore_qatomicint=yes
1764 AC_MSG_RESULT([yes])
1765 AC_DEFINE([HAVE_QTCORE_QATOMICINT], [1], [Define to 1 if the installed version of Qt4 provides QAtomicInt.])
1766 ],
1767 [
1768 ac_have_qtcore_qatomicint=no
1769 AC_MSG_RESULT([no])
1770 ])
1771 CXXFLAGS="${safe_CXXFLAGS}"
1772 AC_LANG(C)
1773fi
1774
1775AM_CONDITIONAL([HAVE_QTCORE_QATOMICINT], [test x$ac_have_qtcore_qatomicint = xyes])
1776
1777
1778
sewardj493c4ef2008-12-13 16:45:19 +00001779# Check whether the boost library 1.35 or later has been installed.
1780# The Boost.Threads library has undergone a major rewrite in version 1.35.0.
1781
1782AC_MSG_CHECKING([for boost])
1783
1784AC_LANG(C++)
1785safe_CXXFLAGS=$CXXFLAGS
1786CXXFLAGS="-lboost_thread-mt $mflag_primary"
1787
1788AC_LINK_IFELSE(
1789[
1790#include <boost/thread.hpp>
1791static void thread_func(void)
1792{ }
1793int main(int argc, char** argv)
1794{
1795 boost::thread t(thread_func);
1796 return 0;
1797}
1798],
1799[
1800ac_have_boost_1_35=yes
1801AC_SUBST([BOOST_CFLAGS], [])
1802AC_SUBST([BOOST_LIBS], ["${CXXFLAGS}"])
1803AC_MSG_RESULT([yes])
1804], [
1805ac_have_boost_1_35=no
1806AC_MSG_RESULT([no])
1807])
1808
1809CXXFLAGS=$safe_CXXFLAGS
1810AC_LANG(C)
1811
1812AM_CONDITIONAL([HAVE_BOOST_1_35], [test x$ac_have_boost_1_35 = xyes])
1813
1814
1815# does this compiler support -fopenmp, does it have the include file
1816# <omp.h> and does it have libgomp ?
1817
1818AC_MSG_CHECKING([for OpenMP])
1819
1820safe_CFLAGS=$CFLAGS
sewardjc876a2f2009-01-22 22:44:30 +00001821CFLAGS="-fopenmp $mflag_primary"
sewardj493c4ef2008-12-13 16:45:19 +00001822
1823AC_LINK_IFELSE(
1824[
1825#include <omp.h>
1826int main(int argc, char** argv)
1827{
1828 omp_set_dynamic(0);
1829 return 0;
1830}
1831],
1832[
1833ac_have_openmp=yes
1834AC_MSG_RESULT([yes])
1835], [
1836ac_have_openmp=no
1837AC_MSG_RESULT([no])
1838])
1839CFLAGS=$safe_CFLAGS
1840
1841AM_CONDITIONAL([HAVE_OPENMP], [test x$ac_have_openmp = xyes])
1842
1843
sewardjc876a2f2009-01-22 22:44:30 +00001844# does this compiler have built-in functions for atomic memory access ?
1845AC_MSG_CHECKING([if gcc supports __sync_bool_compare_and_swap])
1846
1847safe_CFLAGS=$CFLAGS
1848CFLAGS="$mflag_primary"
1849
1850AC_TRY_LINK(,
1851[
1852 int variable = 1;
1853 return (__sync_bool_compare_and_swap(&variable, 1, 2)
1854 && __sync_add_and_fetch(&variable, 1) ? 1 : 0)
1855],
1856[
bartc82d1372009-05-31 16:21:23 +00001857 ac_have_builtin_atomic=yes
sewardjc876a2f2009-01-22 22:44:30 +00001858 AC_MSG_RESULT([yes])
1859 AC_DEFINE(HAVE_BUILTIN_ATOMIC, 1, [Define to 1 if gcc supports __sync_bool_compare_and_swap() a.o.])
1860],
1861[
bartc82d1372009-05-31 16:21:23 +00001862 ac_have_builtin_atomic=no
sewardjc876a2f2009-01-22 22:44:30 +00001863 AC_MSG_RESULT([no])
1864])
1865
1866CFLAGS=$safe_CFLAGS
1867
bartc82d1372009-05-31 16:21:23 +00001868AM_CONDITIONAL([HAVE_BUILTIN_ATOMIC], [test x$ac_have_builtin_atomic = xyes])
1869
sewardjc876a2f2009-01-22 22:44:30 +00001870
njn7fd6d382009-01-22 21:56:32 +00001871#----------------------------------------------------------------------------
1872# Ok. We're done checking.
1873#----------------------------------------------------------------------------
sewardj80637752006-03-02 13:48:21 +00001874
njn8b68b642009-06-24 00:37:09 +00001875# Nb: VEX/Makefile is generated from Makefile.vex.in.
1876AC_CONFIG_FILES([
sewardjde4a1d02002-03-22 01:27:54 +00001877 Makefile
njn8b68b642009-06-24 00:37:09 +00001878 VEX/Makefile:Makefile.vex.in
njn25cac76cb2002-09-23 11:21:57 +00001879 valgrind.spec
muellerbddd6072003-11-19 21:50:07 +00001880 valgrind.pc
dirk07596a22008-04-25 11:33:30 +00001881 glibc-2.X.supp
njn254d542432002-09-23 16:09:39 +00001882 docs/Makefile
1883 tests/Makefile
njnc2e7f482002-09-27 08:44:17 +00001884 tests/vg_regtest
njnec0c27a2005-12-10 23:11:28 +00001885 perf/Makefile
1886 perf/vg_perf
njn254d542432002-09-23 16:09:39 +00001887 include/Makefile
njn7a6e7462002-11-09 17:53:30 +00001888 auxprogs/Makefile
njn8b68b642009-06-24 00:37:09 +00001889 mpi/Makefile
njn25ab726032002-09-23 16:24:41 +00001890 coregrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001891 memcheck/Makefile
1892 memcheck/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001893 memcheck/tests/amd64/Makefile
njnc6168192004-11-29 13:54:10 +00001894 memcheck/tests/x86/Makefile
njn3b3b76d2009-01-19 03:44:19 +00001895 memcheck/tests/linux/Makefile
njnf76d27a2009-05-28 01:53:07 +00001896 memcheck/tests/darwin/Makefile
njna454ec02009-01-19 03:16:59 +00001897 memcheck/tests/x86-linux/Makefile
njn29a5c012009-05-06 06:15:55 +00001898 memcheck/perf/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001899 cachegrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001900 cachegrind/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001901 cachegrind/tests/x86/Makefile
njnf2df9b52002-10-04 11:35:47 +00001902 cachegrind/cg_annotate
weidendoa17f2a32006-03-20 10:27:30 +00001903 callgrind/Makefile
1904 callgrind/callgrind_annotate
1905 callgrind/callgrind_control
1906 callgrind/tests/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001907 helgrind/Makefile
njnf2df9b52002-10-04 11:35:47 +00001908 helgrind/tests/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001909 massif/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001910 massif/tests/Makefile
njn734b8052007-11-01 04:40:37 +00001911 massif/perf/Makefile
njnd5a8d242007-11-02 20:44:57 +00001912 massif/ms_print
njn25cac76cb2002-09-23 11:21:57 +00001913 lackey/Makefile
njnf2df9b52002-10-04 11:35:47 +00001914 lackey/tests/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001915 none/Makefile
1916 none/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001917 none/tests/amd64/Makefile
cerion85665ca2005-06-20 15:51:07 +00001918 none/tests/ppc32/Makefile
sewardj2c48c7b2005-11-29 13:05:56 +00001919 none/tests/ppc64/Makefile
njnc6168192004-11-29 13:54:10 +00001920 none/tests/x86/Makefile
sewardj59570ff2010-01-01 11:59:33 +00001921 none/tests/arm/Makefile
njn0458a122009-02-13 06:23:46 +00001922 none/tests/linux/Makefile
njnf76d27a2009-05-28 01:53:07 +00001923 none/tests/darwin/Makefile
njn06ca3322009-04-15 23:10:04 +00001924 none/tests/x86-linux/Makefile
sewardj9c606bd2008-09-18 18:12:50 +00001925 exp-ptrcheck/Makefile
1926 exp-ptrcheck/tests/Makefile
bartccf17de2008-07-04 15:14:35 +00001927 drd/Makefile
bartccf17de2008-07-04 15:14:35 +00001928 drd/scripts/download-and-build-splash2
1929 drd/tests/Makefile
njndbebecc2009-07-14 01:39:54 +00001930 exp-bbv/Makefile
njndbebecc2009-07-14 01:39:54 +00001931 exp-bbv/tests/Makefile
1932 exp-bbv/tests/x86/Makefile
1933 exp-bbv/tests/x86-linux/Makefile
1934 exp-bbv/tests/amd64-linux/Makefile
1935 exp-bbv/tests/ppc32-linux/Makefile
vince226e0782010-01-06 15:22:11 +00001936 exp-bbv/tests/arm-linux/Makefile
njn8b68b642009-06-24 00:37:09 +00001937])
1938AC_OUTPUT
gobry3b777892002-04-04 09:18:39 +00001939
1940cat<<EOF
1941
njn311303f2009-02-06 03:46:50 +00001942 Maximum build arch: ${ARCH_MAX}
1943 Primary build arch: ${VGCONF_ARCH_PRI}
njn3f8a6e92009-06-02 00:20:47 +00001944 Secondary build arch: ${VGCONF_ARCH_SEC}
njn311303f2009-02-06 03:46:50 +00001945 Build OS: ${VGCONF_OS}
njn7fd6d382009-01-22 21:56:32 +00001946 Primary build target: ${VGCONF_PLATFORM_PRI_CAPS}
1947 Secondary build target: ${VGCONF_PLATFORM_SEC_CAPS}
sewardje95d94f2008-09-19 09:02:19 +00001948 Default supp files: ${DEFAULT_SUPP}
gobry3b777892002-04-04 09:18:39 +00001949
gobry3b777892002-04-04 09:18:39 +00001950EOF