blob: 1e978289f939d2e3f0b5d47e467dbd6a9f04b5f3 [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
sewardjde4a1d02002-03-22 01:27:54 +0000154 *)
155 AC_MSG_RESULT([no (${host_cpu})])
nethercote81d5c662004-10-13 13:18:51 +0000156 AC_MSG_ERROR([Unsupported host architecture. Sorry])
sewardjde4a1d02002-03-22 01:27:54 +0000157 ;;
158esac
159
njn7fd6d382009-01-22 21:56:32 +0000160#----------------------------------------------------------------------------
161
sewardj86e992f2006-01-28 18:39:09 +0000162# Sometimes it's convenient to subvert the bi-arch build system and
163# just have a single build even though the underlying platform is
164# capable of both. Hence handle --enable-only64bit and
165# --enable-only32bit. Complain if both are issued :-)
njn7fd6d382009-01-22 21:56:32 +0000166# [Actually, if either of these options are used, I think both get built,
167# but only one gets installed. So if you use an in-place build, both can be
168# used. --njn]
sewardj86e992f2006-01-28 18:39:09 +0000169
170# Check if a 64-bit only build has been requested
171AC_CACHE_CHECK([for a 64-bit only build], vg_cv_only64bit,
172 [AC_ARG_ENABLE(only64bit,
173 [ --enable-only64bit do a 64-bit only build],
174 [vg_cv_only64bit=$enableval],
175 [vg_cv_only64bit=no])])
176
177# Check if a 32-bit only build has been requested
178AC_CACHE_CHECK([for a 32-bit only build], vg_cv_only32bit,
179 [AC_ARG_ENABLE(only32bit,
180 [ --enable-only32bit do a 32-bit only build],
181 [vg_cv_only32bit=$enableval],
182 [vg_cv_only32bit=no])])
183
184# Stay sane
185if test x$vg_cv_only64bit = xyes -a x$vg_cv_only32bit = xyes; then
186 AC_MSG_ERROR(
187 [Nonsensical: both --enable-only64bit and --enable-only32bit.])
188fi
189
njn7fd6d382009-01-22 21:56:32 +0000190#----------------------------------------------------------------------------
sewardj86e992f2006-01-28 18:39:09 +0000191
njn311303f2009-02-06 03:46:50 +0000192# VGCONF_OS is the primary build OS, eg. "linux". It is passed in to
193# compilation of many C files via -VGO_$(VGCONF_OS) and
194# -VGP_$(VGCONF_ARCH_PRI)_$(VGCONF_OS).
sewardjde4a1d02002-03-22 01:27:54 +0000195AC_MSG_CHECKING([for a supported OS])
njn7fd6d382009-01-22 21:56:32 +0000196AC_SUBST(VGCONF_OS)
sewardjde4a1d02002-03-22 01:27:54 +0000197
njnf76d27a2009-05-28 01:53:07 +0000198DEFAULT_SUPP=""
199
gobrye721a522002-03-22 13:38:30 +0000200case "${host_os}" in
mueller8c68e042004-01-03 15:21:14 +0000201 *linux*)
sewardjde4a1d02002-03-22 01:27:54 +0000202 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000203 VGCONF_OS="linux"
mueller8c68e042004-01-03 15:21:14 +0000204
205 # Ok, this is linux. Check the kernel version
206 AC_MSG_CHECKING([for the kernel version])
207
208 kernel=`uname -r`
209
210 case "${kernel}" in
211 2.6.*)
212 AC_MSG_RESULT([2.6 family (${kernel})])
213 AC_DEFINE([KERNEL_2_6], 1, [Define to 1 if you're using Linux 2.6.x])
214 ;;
215
216 2.4.*)
217 AC_MSG_RESULT([2.4 family (${kernel})])
218 AC_DEFINE([KERNEL_2_4], 1, [Define to 1 if you're using Linux 2.4.x])
219 ;;
220
mueller8c68e042004-01-03 15:21:14 +0000221 *)
222 AC_MSG_RESULT([unsupported (${kernel})])
nethercote4fa681f2004-11-08 17:51:39 +0000223 AC_MSG_ERROR([Valgrind works on kernels 2.4, 2.6])
mueller8c68e042004-01-03 15:21:14 +0000224 ;;
225 esac
226
227 ;;
228
sewardj03d86f22006-10-17 00:57:24 +0000229 aix5.1.*)
230 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000231 VGCONF_OS="aix5"
sewardj03d86f22006-10-17 00:57:24 +0000232 ;;
233 aix5.2.*)
234 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000235 VGCONF_OS="aix5"
sewardj03d86f22006-10-17 00:57:24 +0000236 ;;
237 aix5.3.*)
238 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000239 VGCONF_OS="aix5"
sewardj03d86f22006-10-17 00:57:24 +0000240 ;;
241
mueller8c68e042004-01-03 15:21:14 +0000242 *freebsd*)
243 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000244 VGCONF_OS="freebsd"
sewardjde4a1d02002-03-22 01:27:54 +0000245 ;;
246
njnf76d27a2009-05-28 01:53:07 +0000247 *darwin*)
248 AC_MSG_RESULT([ok (${host_os})])
249 VGCONF_OS="darwin"
250
251 AC_MSG_CHECKING([for the kernel version])
252 kernel=`uname -r`
253
254 # Nb: for Darwin we set DEFAULT_SUPP here. That's because Darwin
255 # has only one relevant version, the OS version. The `uname` check
256 # is a good way to get that version (i.e. "Darwin 9.6.0" is Mac OS
257 # X 10.5.6, and "Darwin 10.x" would presumably be Mac OS X 10.6.x
258 # Snow Leopard and darwin10.supp), and we don't know of an macros
259 # similar to __GLIBC__ to get that info.
260 #
261 # XXX: `uname -r` won't do the right thing for cross-compiles, but
262 # that's not a problem yet.
263 case "${kernel}" in
264 9.*)
265 AC_MSG_RESULT([Darwin 9.x (${kernel}) / Mac OS X 10.5 Leopard])
266 DEFAULT_SUPP="darwin9.supp ${DEFAULT_SUPP}"
bart6ccda142009-07-23 07:37:32 +0000267 DEFAULT_SUPP="darwin9-drd.supp ${DEFAULT_SUPP}"
njnf76d27a2009-05-28 01:53:07 +0000268 ;;
269 *)
270 AC_MSG_RESULT([unsupported (${kernel})])
271 AC_MSG_ERROR([Valgrind works on Darwin 9.x (Mac OS X 10.5)])
272 ;;
273 esac
274 ;;
275
sewardjde4a1d02002-03-22 01:27:54 +0000276 *)
277 AC_MSG_RESULT([no (${host_os})])
mueller8c68e042004-01-03 15:21:14 +0000278 AC_MSG_ERROR([Valgrind is operating system specific. Sorry. Please consider doing a port.])
sewardjde4a1d02002-03-22 01:27:54 +0000279 ;;
280esac
281
njn7fd6d382009-01-22 21:56:32 +0000282#----------------------------------------------------------------------------
283
tomd6398392006-06-07 17:44:36 +0000284# If we are building on a 64 bit platform test to see if the system
285# supports building 32 bit programs and disable 32 bit support if it
286# does not support building 32 bit programs
287
njn7fd6d382009-01-22 21:56:32 +0000288case "$ARCH_MAX-$VGCONF_OS" in
tomd6398392006-06-07 17:44:36 +0000289 amd64-linux|ppc64-linux)
290 AC_MSG_CHECKING([for 32 bit build support])
291 safe_CFLAGS=$CFLAGS
292 CFLAGS="-m32"
293 AC_TRY_LINK(, [
njn9890ee12009-01-21 22:25:50 +0000294 return 0;
tomd6398392006-06-07 17:44:36 +0000295 ],
296 [
297 AC_MSG_RESULT([yes])
298 ], [
299 vg_cv_only64bit="yes"
300 AC_MSG_RESULT([no])
301 ])
302 CFLAGS=$safe_CFLAGS;;
303esac
304
305if test x$vg_cv_only64bit = xyes -a x$vg_cv_only32bit = xyes; then
306 AC_MSG_ERROR(
307 [--enable-only32bit was specified but system does not support 32 bit builds])
308fi
nethercote888ecb72004-08-23 14:54:40 +0000309
njn7fd6d382009-01-22 21:56:32 +0000310#----------------------------------------------------------------------------
311
njn311303f2009-02-06 03:46:50 +0000312# VGCONF_ARCH_PRI is the arch for the primary build target, eg. "amd64". By
313# default it's the same as ARCH_MAX. But if, say, we do a build on an amd64
314# machine, but --enable-only32bit has been requested, then ARCH_MAX (see
315# above) will be "amd64" since that reflects the most that this cpu can do,
316# but VGCONF_ARCH_PRI will be downgraded to "x86", since that reflects the
317# arch corresponding to the primary build (VGCONF_PLATFORM_PRI_CAPS). It is
njn7fd6d382009-01-22 21:56:32 +0000318# passed in to compilation of many C files via -VGA_$(VGCONF_ARCH_PRI) and
319# -VGP_$(VGCONF_ARCH_PRI)_$(VGCONF_OS).
320AC_SUBST(VGCONF_ARCH_PRI)
321
njn3f8a6e92009-06-02 00:20:47 +0000322# VGCONF_ARCH_SEC is the arch for the secondary build target, eg. "x86".
323# It is passed in to compilation of many C files via -VGA_$(VGCONF_ARCH_SEC)
324# and -VGP_$(VGCONF_ARCH_SEC)_$(VGCONF_OS), if there is a secondary target.
325# It is empty if there is no secondary target.
326AC_SUBST(VGCONF_ARCH_SEC)
327
njn311303f2009-02-06 03:46:50 +0000328# VGCONF_PLATFORM_PRI_CAPS is the primary build target, eg. "AMD64_LINUX".
329# The entire system, including regression and performance tests, will be
330# built for this target. The "_CAPS" indicates that the name is in capital
331# letters, and it also uses '_' rather than '-' as a separator, because it's
njn7fd6d382009-01-22 21:56:32 +0000332# used to create various Makefile variables, which are all in caps by
njn311303f2009-02-06 03:46:50 +0000333# convention and cannot contain '-' characters. This is in contrast to
334# VGCONF_ARCH_PRI and VGCONF_OS which are not in caps.
njn7fd6d382009-01-22 21:56:32 +0000335AC_SUBST(VGCONF_PLATFORM_PRI_CAPS)
336
337# VGCONF_PLATFORM_SEC_CAPS is the secondary build target, if there is one.
338# Valgrind and tools will also be built for this target, but not the
339# regression or performance tests.
sewardj01262142006-01-04 01:20:28 +0000340#
njn7fd6d382009-01-22 21:56:32 +0000341# By default, the primary arch is the same as the "max" arch, as commented
342# above (at the definition of ARCH_MAX). We may choose to downgrade it in
343# the big case statement just below here, in the case where we're building
344# on a 64 bit machine but have been requested only to do a 32 bit build.
345AC_SUBST(VGCONF_PLATFORM_SEC_CAPS)
346
sewardj01262142006-01-04 01:20:28 +0000347AC_MSG_CHECKING([for a supported CPU/OS combination])
nethercote888ecb72004-08-23 14:54:40 +0000348
njn7fd6d382009-01-22 21:56:32 +0000349case "$ARCH_MAX-$VGCONF_OS" in
sewardj01262142006-01-04 01:20:28 +0000350 x86-linux)
njn7fd6d382009-01-22 21:56:32 +0000351 VGCONF_ARCH_PRI="x86"
njn3f8a6e92009-06-02 00:20:47 +0000352 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000353 VGCONF_PLATFORM_PRI_CAPS="X86_LINUX"
354 VGCONF_PLATFORM_SEC_CAPS=""
njnd74b0ef2009-01-20 06:06:52 +0000355 valt_load_address_normal="0x38000000"
356 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000357 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000358 ;;
359 amd64-linux)
sewardj86e992f2006-01-28 18:39:09 +0000360 if test x$vg_cv_only64bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000361 VGCONF_ARCH_PRI="amd64"
njn3f8a6e92009-06-02 00:20:47 +0000362 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000363 VGCONF_PLATFORM_PRI_CAPS="AMD64_LINUX"
364 VGCONF_PLATFORM_SEC_CAPS=""
sewardj86e992f2006-01-28 18:39:09 +0000365 elif test x$vg_cv_only32bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000366 VGCONF_ARCH_PRI="x86"
njn3f8a6e92009-06-02 00:20:47 +0000367 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000368 VGCONF_PLATFORM_PRI_CAPS="X86_LINUX"
369 VGCONF_PLATFORM_SEC_CAPS=""
sewardj86e992f2006-01-28 18:39:09 +0000370 else
njn7fd6d382009-01-22 21:56:32 +0000371 VGCONF_ARCH_PRI="amd64"
njn3f8a6e92009-06-02 00:20:47 +0000372 VGCONF_ARCH_SEC="x86"
njn7fd6d382009-01-22 21:56:32 +0000373 VGCONF_PLATFORM_PRI_CAPS="AMD64_LINUX"
374 VGCONF_PLATFORM_SEC_CAPS="X86_LINUX"
sewardj86e992f2006-01-28 18:39:09 +0000375 fi
njnd74b0ef2009-01-20 06:06:52 +0000376 valt_load_address_normal="0x38000000"
377 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000378 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000379 ;;
380 ppc32-linux)
njn7fd6d382009-01-22 21:56:32 +0000381 VGCONF_ARCH_PRI="ppc32"
njn3f8a6e92009-06-02 00:20:47 +0000382 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000383 VGCONF_PLATFORM_PRI_CAPS="PPC32_LINUX"
384 VGCONF_PLATFORM_SEC_CAPS=""
njnd74b0ef2009-01-20 06:06:52 +0000385 valt_load_address_normal="0x38000000"
386 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000387 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000388 ;;
sewardj03d86f22006-10-17 00:57:24 +0000389 ppc64-aix5)
390 if test x$vg_cv_only64bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000391 VGCONF_ARCH_PRI="ppc64"
njn3f8a6e92009-06-02 00:20:47 +0000392 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000393 VGCONF_PLATFORM_PRI_CAPS="PPC64_AIX5"
394 VGCONF_PLATFORM_SEC_CAPS=""
sewardj03d86f22006-10-17 00:57:24 +0000395 elif test x$vg_cv_only32bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000396 VGCONF_ARCH_PRI="ppc32"
njn3f8a6e92009-06-02 00:20:47 +0000397 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000398 VGCONF_PLATFORM_PRI_CAPS="PPC32_AIX5"
399 VGCONF_PLATFORM_SEC_CAPS=""
sewardj03d86f22006-10-17 00:57:24 +0000400 else
njn7fd6d382009-01-22 21:56:32 +0000401 VGCONF_ARCH_PRI="ppc64"
njn3f8a6e92009-06-02 00:20:47 +0000402 VGCONF_ARCH_SEC="ppc32"
njn7fd6d382009-01-22 21:56:32 +0000403 VGCONF_PLATFORM_PRI_CAPS="PPC64_AIX5"
404 VGCONF_PLATFORM_SEC_CAPS="PPC32_AIX5"
sewardj03d86f22006-10-17 00:57:24 +0000405 fi
njnd74b0ef2009-01-20 06:06:52 +0000406 valt_load_address_normal="0x38000000"
407 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000408 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj03d86f22006-10-17 00:57:24 +0000409 ;;
sewardj01262142006-01-04 01:20:28 +0000410 ppc64-linux)
sewardj86e992f2006-01-28 18:39:09 +0000411 if test x$vg_cv_only64bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000412 VGCONF_ARCH_PRI="ppc64"
njn3f8a6e92009-06-02 00:20:47 +0000413 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000414 VGCONF_PLATFORM_PRI_CAPS="PPC64_LINUX"
415 VGCONF_PLATFORM_SEC_CAPS=""
sewardj86e992f2006-01-28 18:39:09 +0000416 elif test x$vg_cv_only32bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000417 VGCONF_ARCH_PRI="ppc32"
njn3f8a6e92009-06-02 00:20:47 +0000418 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000419 VGCONF_PLATFORM_PRI_CAPS="PPC32_LINUX"
420 VGCONF_PLATFORM_SEC_CAPS=""
sewardj86e992f2006-01-28 18:39:09 +0000421 else
njn7fd6d382009-01-22 21:56:32 +0000422 VGCONF_ARCH_PRI="ppc64"
njn3f8a6e92009-06-02 00:20:47 +0000423 VGCONF_ARCH_SEC="ppc32"
njn7fd6d382009-01-22 21:56:32 +0000424 VGCONF_PLATFORM_PRI_CAPS="PPC64_LINUX"
425 VGCONF_PLATFORM_SEC_CAPS="PPC32_LINUX"
sewardj86e992f2006-01-28 18:39:09 +0000426 fi
njnd74b0ef2009-01-20 06:06:52 +0000427 valt_load_address_normal="0x38000000"
428 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000429 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000430 ;;
njnf76d27a2009-05-28 01:53:07 +0000431 x86-darwin)
432 VGCONF_ARCH_PRI="x86"
njn3f8a6e92009-06-02 00:20:47 +0000433 VGCONF_ARCH_SEC=""
njnf76d27a2009-05-28 01:53:07 +0000434 VGCONF_PLATFORM_PRI_CAPS="X86_DARWIN"
435 VGCONF_PLATFORM_SEC_CAPS=""
436 valt_load_address_normal="0x0"
437 valt_load_address_inner="0x0"
438 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
439 ;;
440 amd64-darwin)
441 if test x$vg_cv_only64bit = xyes; then
442 VGCONF_ARCH_PRI="amd64"
njn3f8a6e92009-06-02 00:20:47 +0000443 VGCONF_ARCH_SEC=""
njnf76d27a2009-05-28 01:53:07 +0000444 VGCONF_PLATFORM_PRI_CAPS="AMD64_DARWIN"
445 VGCONF_PLATFORM_SEC_CAPS=""
446 elif test x$vg_cv_only32bit = xyes; then
447 VGCONF_ARCH_PRI="x86"
njn3f8a6e92009-06-02 00:20:47 +0000448 VGCONF_ARCH_SEC=""
njnf76d27a2009-05-28 01:53:07 +0000449 VGCONF_PLATFORM_PRI_CAPS="X86_DARWIN"
450 VGCONF_PLATFORM_SEC_CAPS=""
451 VGCONF_ARCH_PRI_CAPS="x86"
452 else
453 VGCONF_ARCH_PRI="amd64"
njn3f8a6e92009-06-02 00:20:47 +0000454 VGCONF_ARCH_SEC="x86"
njnf76d27a2009-05-28 01:53:07 +0000455 VGCONF_PLATFORM_PRI_CAPS="AMD64_DARWIN"
456 VGCONF_PLATFORM_SEC_CAPS="X86_DARWIN"
457 fi
458 valt_load_address_normal="0x0"
459 valt_load_address_inner="0x0"
460 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
461 ;;
nethercote888ecb72004-08-23 14:54:40 +0000462 *)
njn7fd6d382009-01-22 21:56:32 +0000463 VGCONF_ARCH_PRI="unknown"
njn3f8a6e92009-06-02 00:20:47 +0000464 VGCONF_ARCH_SEC="unknown"
njn7fd6d382009-01-22 21:56:32 +0000465 VGCONF_PLATFORM_PRI_CAPS="UNKNOWN"
466 VGCONF_PLATFORM_SEC_CAPS="UNKNOWN"
njn377c43f2009-05-19 07:39:22 +0000467 AC_MSG_RESULT([no (${ARCH_MAX}-${VGCONF_OS})])
sewardj3e38ce02004-11-23 01:17:29 +0000468 AC_MSG_ERROR([Valgrind is platform specific. Sorry. Please consider doing a port.])
nethercote888ecb72004-08-23 14:54:40 +0000469 ;;
470esac
sewardjde4a1d02002-03-22 01:27:54 +0000471
njn7fd6d382009-01-22 21:56:32 +0000472#----------------------------------------------------------------------------
njna454ec02009-01-19 03:16:59 +0000473
njn7fd6d382009-01-22 21:56:32 +0000474# Set up VGCONF_ARCHS_INCLUDE_<arch>. Either one or two of these become
475# defined.
476AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_X86,
477 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
njnf76d27a2009-05-28 01:53:07 +0000478 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX \
479 -o x$VGCONF_PLATFORM_PRI_CAPS = xX86_DARWIN \
480 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_DARWIN )
njn7fd6d382009-01-22 21:56:32 +0000481AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_AMD64,
njnf76d27a2009-05-28 01:53:07 +0000482 test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \
483 -o x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_DARWIN )
njn7fd6d382009-01-22 21:56:32 +0000484AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_PPC32,
485 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX \
486 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX \
487 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
488 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5 )
489AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_PPC64,
490 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX \
491 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 )
sewardj03d86f22006-10-17 00:57:24 +0000492
njn7fd6d382009-01-22 21:56:32 +0000493# Set up VGCONF_PLATFORMS_INCLUDE_<platform>. Either one or two of these
494# become defined.
495AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_X86_LINUX,
496 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
497 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX)
498AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_AMD64_LINUX,
499 test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX)
500AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC32_LINUX,
501 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX \
502 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX)
503AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC64_LINUX,
504 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX)
njnf76d27a2009-05-28 01:53:07 +0000505
njn7fd6d382009-01-22 21:56:32 +0000506AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC32_AIX5,
507 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
508 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5)
509AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC64_AIX5,
510 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5)
511
njnf76d27a2009-05-28 01:53:07 +0000512AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_X86_DARWIN,
513 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_DARWIN \
514 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_DARWIN)
515AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_AMD64_DARWIN,
516 test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_DARWIN)
517
518
njn7fd6d382009-01-22 21:56:32 +0000519# Similarly, set up VGCONF_OF_IS_<os>. Exactly one of these becomes defined.
sewardj03d86f22006-10-17 00:57:24 +0000520# Relies on the assumption that the primary and secondary targets are
521# for the same OS, so therefore only necessary to test the primary.
njn7fd6d382009-01-22 21:56:32 +0000522AM_CONDITIONAL(VGCONF_OS_IS_LINUX,
523 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
524 -o x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \
525 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX \
526 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX)
527AM_CONDITIONAL(VGCONF_OS_IS_AIX5,
528 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
529 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5)
njnf76d27a2009-05-28 01:53:07 +0000530AM_CONDITIONAL(VGCONF_OS_IS_DARWIN,
531 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_DARWIN \
532 -o x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_DARWIN)
sewardj03d86f22006-10-17 00:57:24 +0000533
534
njn7fd6d382009-01-22 21:56:32 +0000535# Sometimes, in the Makefile.am files, it's useful to know whether or not
536# there is a secondary target.
njnee0c66a2009-06-01 23:59:20 +0000537AM_CONDITIONAL(VGCONF_HAVE_PLATFORM_SEC,
njn7fd6d382009-01-22 21:56:32 +0000538 test x$VGCONF_PLATFORM_SEC_CAPS != x)
tomfb7bcde2005-11-07 15:24:38 +0000539
tomb637bad2005-11-08 12:28:35 +0000540
njn7fd6d382009-01-22 21:56:32 +0000541#----------------------------------------------------------------------------
542# Inner Valgrind?
543#----------------------------------------------------------------------------
544
njnd74b0ef2009-01-20 06:06:52 +0000545# Check if this should be built as an inner Valgrind, to be run within
546# another Valgrind. Choose the load address accordingly.
547AC_SUBST(VALT_LOAD_ADDRESS)
548AC_CACHE_CHECK([for use as an inner Valgrind], vg_cv_inner,
549 [AC_ARG_ENABLE(inner,
550 [ --enable-inner enables self-hosting],
551 [vg_cv_inner=$enableval],
552 [vg_cv_inner=no])])
553if test "$vg_cv_inner" = yes; then
554 AC_DEFINE([ENABLE_INNER], 1, [configured to run as an inner Valgrind])
555 VALT_LOAD_ADDRESS=$valt_load_address_inner
556else
557 VALT_LOAD_ADDRESS=$valt_load_address_normal
558fi
559
560
njn7fd6d382009-01-22 21:56:32 +0000561#----------------------------------------------------------------------------
562# Libc and suppressions
563#----------------------------------------------------------------------------
564# This variable will collect the suppression files to be used.
njn7fd6d382009-01-22 21:56:32 +0000565AC_SUBST(DEFAULT_SUPP)
sewardj01262142006-01-04 01:20:28 +0000566
dirk07596a22008-04-25 11:33:30 +0000567GLIBC_VERSION=""
sewardjde4a1d02002-03-22 01:27:54 +0000568
sewardjde4a1d02002-03-22 01:27:54 +0000569AC_EGREP_CPP([GLIBC_22], [
570#include <features.h>
571#ifdef __GNU_LIBRARY__
572 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 2)
573 GLIBC_22
574 #endif
575#endif
576],
dirk07596a22008-04-25 11:33:30 +0000577GLIBC_VERSION="2.2")
sewardjde4a1d02002-03-22 01:27:54 +0000578
sewardj08c7f012002-10-07 23:56:55 +0000579AC_EGREP_CPP([GLIBC_23], [
580#include <features.h>
581#ifdef __GNU_LIBRARY__
582 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 3)
583 GLIBC_23
584 #endif
585#endif
586],
dirk07596a22008-04-25 11:33:30 +0000587GLIBC_VERSION="2.3")
sewardj08c7f012002-10-07 23:56:55 +0000588
njn781dba52005-06-30 04:06:38 +0000589AC_EGREP_CPP([GLIBC_24], [
590#include <features.h>
591#ifdef __GNU_LIBRARY__
592 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 4)
593 GLIBC_24
594 #endif
595#endif
596],
dirk07596a22008-04-25 11:33:30 +0000597GLIBC_VERSION="2.4")
njn781dba52005-06-30 04:06:38 +0000598
dirkaece45c2006-10-12 08:17:49 +0000599AC_EGREP_CPP([GLIBC_25], [
600#include <features.h>
601#ifdef __GNU_LIBRARY__
602 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 5)
603 GLIBC_25
604 #endif
605#endif
606],
dirk07596a22008-04-25 11:33:30 +0000607GLIBC_VERSION="2.5")
dirkaece45c2006-10-12 08:17:49 +0000608
dirkc8bd0c52007-05-23 17:39:08 +0000609AC_EGREP_CPP([GLIBC_26], [
610#include <features.h>
611#ifdef __GNU_LIBRARY__
612 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 6)
613 GLIBC_26
614 #endif
615#endif
616],
dirk07596a22008-04-25 11:33:30 +0000617GLIBC_VERSION="2.6")
dirkc8bd0c52007-05-23 17:39:08 +0000618
sewardj68c80c12007-11-18 14:40:02 +0000619AC_EGREP_CPP([GLIBC_27], [
620#include <features.h>
621#ifdef __GNU_LIBRARY__
622 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 7)
623 GLIBC_27
624 #endif
625#endif
626],
dirk07596a22008-04-25 11:33:30 +0000627GLIBC_VERSION="2.7")
628
629AC_EGREP_CPP([GLIBC_28], [
630#include <features.h>
631#ifdef __GNU_LIBRARY__
632 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 8)
633 GLIBC_28
634 #endif
635#endif
636],
637GLIBC_VERSION="2.8")
sewardj68c80c12007-11-18 14:40:02 +0000638
dirkd2e31eb2008-11-19 23:58:36 +0000639AC_EGREP_CPP([GLIBC_29], [
640#include <features.h>
641#ifdef __GNU_LIBRARY__
642 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 9)
643 GLIBC_29
644 #endif
645#endif
646],
647GLIBC_VERSION="2.9")
648
sewardj5d425e82009-02-01 19:01:11 +0000649AC_EGREP_CPP([GLIBC_210], [
650#include <features.h>
651#ifdef __GNU_LIBRARY__
652 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 10)
653 GLIBC_210
654 #endif
655#endif
656],
657GLIBC_VERSION="2.10")
658
bart0fac7ff2009-11-15 19:11:19 +0000659AC_EGREP_CPP([GLIBC_211], [
660#include <features.h>
661#ifdef __GNU_LIBRARY__
662 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 11)
663 GLIBC_211
664 #endif
665#endif
666],
667GLIBC_VERSION="2.11")
668
sewardj03d86f22006-10-17 00:57:24 +0000669AC_EGREP_CPP([AIX5_LIBC], [
670#include <standards.h>
671#if defined(_AIXVERSION_510) || defined(_AIXVERSION_520) || defined(_AIXVERSION_530)
672 AIX5_LIBC
673#endif
674],
dirk07596a22008-04-25 11:33:30 +0000675GLIBC_VERSION="aix5")
daywalkere9212b32003-06-15 22:39:15 +0000676
njnf76d27a2009-05-28 01:53:07 +0000677# not really a version check
678AC_EGREP_CPP([DARWIN_LIBC], [
679#include <sys/cdefs.h>
680#if defined(__DARWIN_VERS_1050)
681 DARWIN_LIBC
682#endif
683],
684GLIBC_VERSION="darwin")
685
dirk07596a22008-04-25 11:33:30 +0000686AC_MSG_CHECKING([the GLIBC_VERSION version])
sewardj03d86f22006-10-17 00:57:24 +0000687
dirk07596a22008-04-25 11:33:30 +0000688case "${GLIBC_VERSION}" in
sewardjde4a1d02002-03-22 01:27:54 +0000689 2.2)
690 AC_MSG_RESULT(2.2 family)
daywalker418c7482002-10-16 13:09:26 +0000691 AC_DEFINE([GLIBC_2_2], 1, [Define to 1 if you're using glibc 2.2.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000692 DEFAULT_SUPP="glibc-2.2.supp ${DEFAULT_SUPP}"
693 DEFAULT_SUPP="glibc-2.2-LinuxThreads-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000694 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardjde4a1d02002-03-22 01:27:54 +0000695 ;;
696
sewardj08c7f012002-10-07 23:56:55 +0000697 2.3)
698 AC_MSG_RESULT(2.3 family)
daywalker418c7482002-10-16 13:09:26 +0000699 AC_DEFINE([GLIBC_2_3], 1, [Define to 1 if you're using glibc 2.3.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000700 DEFAULT_SUPP="glibc-2.3.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000701 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000702 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardj08c7f012002-10-07 23:56:55 +0000703 ;;
704
njn781dba52005-06-30 04:06:38 +0000705 2.4)
706 AC_MSG_RESULT(2.4 family)
707 AC_DEFINE([GLIBC_2_4], 1, [Define to 1 if you're using glibc 2.4.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000708 DEFAULT_SUPP="glibc-2.4.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000709 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000710 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
njn781dba52005-06-30 04:06:38 +0000711 ;;
712
dirkaece45c2006-10-12 08:17:49 +0000713 2.5)
714 AC_MSG_RESULT(2.5 family)
715 AC_DEFINE([GLIBC_2_5], 1, [Define to 1 if you're using glibc 2.5.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000716 DEFAULT_SUPP="glibc-2.5.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000717 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000718 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
dirkaece45c2006-10-12 08:17:49 +0000719 ;;
dirkc8bd0c52007-05-23 17:39:08 +0000720 2.6)
721 AC_MSG_RESULT(2.6 family)
722 AC_DEFINE([GLIBC_2_6], 1, [Define to 1 if you're using glibc 2.6.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000723 DEFAULT_SUPP="glibc-2.6.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000724 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000725 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000726 ;;
727 2.7)
728 AC_MSG_RESULT(2.7 family)
729 AC_DEFINE([GLIBC_2_7], 1, [Define to 1 if you're using glibc 2.7.x])
dirk07596a22008-04-25 11:33:30 +0000730 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000731 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000732 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
dirkc8bd0c52007-05-23 17:39:08 +0000733 ;;
dirk07596a22008-04-25 11:33:30 +0000734 2.8)
735 AC_MSG_RESULT(2.8 family)
dirkeb939fc2008-04-27 20:38:47 +0000736 AC_DEFINE([GLIBC_2_8], 1, [Define to 1 if you're using glibc 2.8.x])
dirk07596a22008-04-25 11:33:30 +0000737 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
738 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
739 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
740 ;;
dirkd2e31eb2008-11-19 23:58:36 +0000741 2.9)
742 AC_MSG_RESULT(2.9 family)
743 AC_DEFINE([GLIBC_2_9], 1, [Define to 1 if you're using glibc 2.9.x])
744 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
745 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
746 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
747 ;;
sewardj5d425e82009-02-01 19:01:11 +0000748 2.10)
749 AC_MSG_RESULT(2.10 family)
750 AC_DEFINE([GLIBC_2_10], 1, [Define to 1 if you're using glibc 2.10.x])
751 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
752 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
753 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
754 ;;
bart0fac7ff2009-11-15 19:11:19 +0000755 2.11)
756 AC_MSG_RESULT(2.11 family)
757 AC_DEFINE([GLIBC_2_11], 1, [Define to 1 if you're using glibc 2.11.x])
758 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
759 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
760 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
761 ;;
sewardj03d86f22006-10-17 00:57:24 +0000762 aix5)
sewardj2f3bcd22006-12-12 01:38:15 +0000763 AC_MSG_RESULT(AIX 5.1 or 5.2 or 5.3)
764 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 +0000765 DEFAULT_SUPP="aix5libc.supp ${DEFAULT_SUPP}"
766 ;;
njnf76d27a2009-05-28 01:53:07 +0000767 darwin)
768 AC_MSG_RESULT(Darwin)
769 AC_DEFINE([DARWIN_LIBC], 1, [Define to 1 if you're using Darwin])
770 # DEFAULT_SUPP set by kernel version check above.
771 ;;
dirkaece45c2006-10-12 08:17:49 +0000772
sewardjde4a1d02002-03-22 01:27:54 +0000773 *)
774 AC_MSG_RESULT(unsupported version)
bart0fac7ff2009-11-15 19:11:19 +0000775 AC_MSG_ERROR([Valgrind requires glibc version 2.2 - 2.11])
dirk07596a22008-04-25 11:33:30 +0000776 AC_MSG_ERROR([or AIX 5.1 or 5.2 or 5.3 GLIBC_VERSION])
njnf76d27a2009-05-28 01:53:07 +0000777 AC_MSG_ERROR([or Darwin libc])
sewardjde4a1d02002-03-22 01:27:54 +0000778 ;;
779esac
780
dirk07596a22008-04-25 11:33:30 +0000781AC_SUBST(GLIBC_VERSION)
sewardj535c50f2005-06-04 23:14:53 +0000782
sewardj414f3582008-07-18 20:46:00 +0000783
784# Add default suppressions for the X client libraries. Make no
785# attempt to detect whether such libraries are installed on the
786# build machine (or even if any X facilities are present); just
787# add the suppressions antidisirregardless.
788DEFAULT_SUPP="xfree-4.supp ${DEFAULT_SUPP}"
789DEFAULT_SUPP="xfree-3.supp ${DEFAULT_SUPP}"
gobrye721a522002-03-22 13:38:30 +0000790
sewardj5744c022008-10-19 18:58:13 +0000791# Add glibc and X11 suppressions for exp-ptrcheck
792DEFAULT_SUPP="exp-ptrcheck.supp ${DEFAULT_SUPP}"
793
sewardj2e10a682003-04-07 19:36:41 +0000794
njn7fd6d382009-01-22 21:56:32 +0000795#----------------------------------------------------------------------------
796# Checking for various library functions and other definitions
797#----------------------------------------------------------------------------
798
bart59e2f182008-04-28 16:22:53 +0000799# Check for CLOCK_MONOTONIC
800
801AC_MSG_CHECKING([for CLOCK_MONOTONIC])
802
803AC_TRY_COMPILE(
804[
805#include <time.h>
806], [
807 struct timespec t;
808 clock_gettime(CLOCK_MONOTONIC, &t);
809 return 0;
810],
811[
812AC_MSG_RESULT([yes])
813AC_DEFINE([HAVE_CLOCK_MONOTONIC], 1,
814 [Define to 1 if you have the `CLOCK_MONOTONIC' constant.])
815], [
816AC_MSG_RESULT([no])
817])
818
bartfea06922008-05-03 09:12:15 +0000819
820# Check for PTHREAD_MUTEX_ADAPTIVE_NP
821
822AC_MSG_CHECKING([for PTHREAD_MUTEX_ADAPTIVE_NP])
823
824AC_TRY_COMPILE(
825[
826#define _GNU_SOURCE
827#include <pthread.h>
828], [
829 return (PTHREAD_MUTEX_ADAPTIVE_NP);
830],
831[
832AC_MSG_RESULT([yes])
833AC_DEFINE([HAVE_PTHREAD_MUTEX_ADAPTIVE_NP], 1,
834 [Define to 1 if you have the `PTHREAD_MUTEX_ADAPTIVE_NP' constant.])
835], [
836AC_MSG_RESULT([no])
837])
838
839
840# Check for PTHREAD_MUTEX_ERRORCHECK_NP
841
842AC_MSG_CHECKING([for PTHREAD_MUTEX_ERRORCHECK_NP])
843
844AC_TRY_COMPILE(
845[
846#define _GNU_SOURCE
847#include <pthread.h>
848], [
849 return (PTHREAD_MUTEX_ERRORCHECK_NP);
850],
851[
852AC_MSG_RESULT([yes])
853AC_DEFINE([HAVE_PTHREAD_MUTEX_ERRORCHECK_NP], 1,
854 [Define to 1 if you have the `PTHREAD_MUTEX_ERRORCHECK_NP' constant.])
855], [
856AC_MSG_RESULT([no])
857])
858
859
860# Check for PTHREAD_MUTEX_RECURSIVE_NP
861
862AC_MSG_CHECKING([for PTHREAD_MUTEX_RECURSIVE_NP])
863
864AC_TRY_COMPILE(
865[
866#define _GNU_SOURCE
867#include <pthread.h>
868], [
869 return (PTHREAD_MUTEX_RECURSIVE_NP);
870],
871[
872AC_MSG_RESULT([yes])
873AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE_NP], 1,
874 [Define to 1 if you have the `PTHREAD_MUTEX_RECURSIVE_NP' constant.])
875], [
876AC_MSG_RESULT([no])
877])
878
879
880# Check for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
881
882AC_MSG_CHECKING([for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP])
883
884AC_TRY_COMPILE(
885[
886#define _GNU_SOURCE
887#include <pthread.h>
888], [
889 pthread_mutex_t m = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
890 return 0;
891],
892[
893AC_MSG_RESULT([yes])
894AC_DEFINE([HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], 1,
895 [Define to 1 if you have the `PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP' constant.])
896], [
897AC_MSG_RESULT([no])
898])
899
900
bart5e389f12008-04-05 12:53:15 +0000901# Check whether pthread_mutex_t has a member called __m_kind.
902
903AC_MSG_CHECKING([for pthread_mutex_t::__m_kind])
904
bart56730cd2008-05-11 06:41:46 +0000905AC_TRY_COMPILE(
bart5e389f12008-04-05 12:53:15 +0000906[
bart56730cd2008-05-11 06:41:46 +0000907 #include <pthread.h>
908], [
bart5e389f12008-04-05 12:53:15 +0000909 pthread_mutex_t m;
910 return m.__m_kind;
bart56730cd2008-05-11 06:41:46 +0000911], [
bart5e389f12008-04-05 12:53:15 +0000912AC_MSG_RESULT([yes])
913AC_DEFINE([HAVE_PTHREAD_MUTEX_T__M_KIND], 1,
914 [Define to 1 if pthread_mutex_t has a member called __m_kind.])
915], [
916AC_MSG_RESULT([no])
917])
918
919
920# Check whether pthread_mutex_t has a member called __data.__kind.
921
922AC_MSG_CHECKING([for pthread_mutex_t::__data.__kind])
923
bart56730cd2008-05-11 06:41:46 +0000924AC_TRY_COMPILE(
bart5e389f12008-04-05 12:53:15 +0000925[
bart56730cd2008-05-11 06:41:46 +0000926#include <pthread.h>
927], [
bart5e389f12008-04-05 12:53:15 +0000928 pthread_mutex_t m;
929 return m.__data.__kind;
bart56730cd2008-05-11 06:41:46 +0000930], [
bart5e389f12008-04-05 12:53:15 +0000931AC_MSG_RESULT([yes])
932AC_DEFINE([HAVE_PTHREAD_MUTEX_T__DATA__KIND], 1,
933 [Define to 1 if pthread_mutex_t has a member __data.__kind.])
934], [
935AC_MSG_RESULT([no])
936])
937
938
bart62c370e2008-05-12 18:50:51 +0000939# does this compiler support -maltivec and does it have the include file
940# <altivec.h> ?
941
942AC_MSG_CHECKING([for Altivec])
943
944safe_CFLAGS=$CFLAGS
945CFLAGS="-maltivec"
946
947AC_TRY_COMPILE(
948[
949#include <altivec.h>
950], [
951 vector unsigned int v;
952],
953[
954ac_have_altivec=yes
955AC_MSG_RESULT([yes])
956], [
957ac_have_altivec=no
958AC_MSG_RESULT([no])
959])
960CFLAGS=$safe_CFLAGS
961
962AM_CONDITIONAL([HAS_ALTIVEC], [test x$ac_have_altivec = xyes])
963AM_CONDITIONAL([HAVE_ALTIVEC_H], [test x$ac_have_altivec = xyes])
964
965
bart36dd85a2009-04-26 07:11:48 +0000966# Check for pthread_create@GLIBC2.0
967AC_MSG_CHECKING([for pthread_create@GLIBC2.0()])
968
bart16e1c5a2009-04-26 07:38:53 +0000969safe_CFLAGS=$CFLAGS
970CFLAGS="-lpthread"
bart36dd85a2009-04-26 07:11:48 +0000971AC_TRY_LINK(
972[
973extern int pthread_create_glibc_2_0(void*, const void*,
974 void *(*)(void*), void*);
975__asm__(".symver pthread_create_glibc_2_0, pthread_create@GLIBC_2.0");
976], [
bart276ed3a2009-05-10 15:41:45 +0000977#ifdef __powerpc__
978/*
979 * Apparently on PowerPC linking this program succeeds and generates an
980 * executable with the undefined symbol pthread_create@GLIBC_2.0.
981 */
982#error This test does not work properly on PowerPC.
983#else
bart16e1c5a2009-04-26 07:38:53 +0000984 pthread_create_glibc_2_0(0, 0, 0, 0);
bart276ed3a2009-05-10 15:41:45 +0000985#endif
bart16e1c5a2009-04-26 07:38:53 +0000986 return 0;
bart36dd85a2009-04-26 07:11:48 +0000987],
988[
989ac_have_pthread_create_glibc_2_0=yes
990AC_MSG_RESULT([yes])
991AC_DEFINE([HAVE_PTHREAD_CREATE_GLIBC_2_0], 1,
992 [Define to 1 if you have the `pthread_create@glibc2.0' function.])
993], [
994ac_have_pthread_create_glibc_2_0=no
995AC_MSG_RESULT([no])
996])
bart16e1c5a2009-04-26 07:38:53 +0000997CFLAGS=$safe_CFLAGS
bart36dd85a2009-04-26 07:11:48 +0000998
999AM_CONDITIONAL(HAVE_PTHREAD_CREATE_GLIBC_2_0,
bart24f53902009-04-26 11:29:02 +00001000 test x$ac_have_pthread_create_glibc_2_0 = xyes)
bart36dd85a2009-04-26 07:11:48 +00001001
1002
barta50aa8a2008-04-27 06:06:57 +00001003# Check for eventfd_t, eventfd() and eventfd_read()
1004AC_MSG_CHECKING([for eventfd()])
1005
1006AC_TRY_LINK(
1007[
1008#include <sys/eventfd.h>
1009], [
1010 eventfd_t ev;
1011 int fd;
1012
1013 fd = eventfd(5, 0);
1014 eventfd_read(fd, &ev);
1015 return 0;
1016],
1017[
1018AC_MSG_RESULT([yes])
1019AC_DEFINE([HAVE_EVENTFD], 1,
1020 [Define to 1 if you have the `eventfd' function.])
1021AC_DEFINE([HAVE_EVENTFD_READ], 1,
1022 [Define to 1 if you have the `eventfd_read' function.])
1023], [
1024AC_MSG_RESULT([no])
1025])
1026
1027
njn7fd6d382009-01-22 21:56:32 +00001028#----------------------------------------------------------------------------
1029# Checking for supported compiler flags.
1030#----------------------------------------------------------------------------
1031
sewardj535c50f2005-06-04 23:14:53 +00001032# does this compiler support -m32 ?
1033AC_MSG_CHECKING([if gcc accepts -m32])
1034
1035safe_CFLAGS=$CFLAGS
1036CFLAGS="-m32"
1037
1038AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001039 return 0;
sewardj535c50f2005-06-04 23:14:53 +00001040],
1041[
1042FLAG_M32="-m32"
1043AC_MSG_RESULT([yes])
1044], [
1045FLAG_M32=""
1046AC_MSG_RESULT([no])
1047])
1048CFLAGS=$safe_CFLAGS
1049
1050AC_SUBST(FLAG_M32)
1051
1052
sewardj03d86f22006-10-17 00:57:24 +00001053# does this compiler support -maix32 ?
1054AC_MSG_CHECKING([if gcc accepts -maix32])
1055
1056safe_CFLAGS=$CFLAGS
1057CFLAGS="-maix32"
1058
1059AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001060 return 0;
sewardj03d86f22006-10-17 00:57:24 +00001061],
1062[
1063FLAG_MAIX32="-maix32"
1064AC_MSG_RESULT([yes])
1065], [
1066FLAG_MAIX32=""
1067AC_MSG_RESULT([no])
1068])
1069CFLAGS=$safe_CFLAGS
1070
1071AC_SUBST(FLAG_MAIX32)
1072
1073
sewardj01262142006-01-04 01:20:28 +00001074# does this compiler support -m64 ?
1075AC_MSG_CHECKING([if gcc accepts -m64])
1076
1077safe_CFLAGS=$CFLAGS
1078CFLAGS="-m64"
1079
1080AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001081 return 0;
sewardj01262142006-01-04 01:20:28 +00001082],
1083[
1084FLAG_M64="-m64"
1085AC_MSG_RESULT([yes])
1086], [
1087FLAG_M64=""
1088AC_MSG_RESULT([no])
1089])
1090CFLAGS=$safe_CFLAGS
1091
1092AC_SUBST(FLAG_M64)
1093
1094
sewardj03d86f22006-10-17 00:57:24 +00001095# does this compiler support -maix64 ?
1096AC_MSG_CHECKING([if gcc accepts -maix64])
1097
1098safe_CFLAGS=$CFLAGS
1099CFLAGS="-maix64"
1100
1101AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001102 return 0;
sewardj03d86f22006-10-17 00:57:24 +00001103],
1104[
1105FLAG_MAIX64="-maix64"
1106AC_MSG_RESULT([yes])
1107], [
1108FLAG_MAIX64=""
1109AC_MSG_RESULT([no])
1110])
1111CFLAGS=$safe_CFLAGS
1112
1113AC_SUBST(FLAG_MAIX64)
1114
1115
sewardj67f1fcc2005-07-03 10:41:02 +00001116# does this compiler support -mmmx ?
1117AC_MSG_CHECKING([if gcc accepts -mmmx])
1118
1119safe_CFLAGS=$CFLAGS
1120CFLAGS="-mmmx"
1121
1122AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001123 return 0;
sewardj67f1fcc2005-07-03 10:41:02 +00001124],
1125[
1126FLAG_MMMX="-mmmx"
1127AC_MSG_RESULT([yes])
1128], [
1129FLAG_MMMX=""
1130AC_MSG_RESULT([no])
1131])
1132CFLAGS=$safe_CFLAGS
1133
1134AC_SUBST(FLAG_MMMX)
1135
1136
1137# does this compiler support -msse ?
1138AC_MSG_CHECKING([if gcc accepts -msse])
1139
1140safe_CFLAGS=$CFLAGS
1141CFLAGS="-msse"
1142
1143AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001144 return 0;
sewardj67f1fcc2005-07-03 10:41:02 +00001145],
1146[
1147FLAG_MSSE="-msse"
1148AC_MSG_RESULT([yes])
1149], [
1150FLAG_MSSE=""
1151AC_MSG_RESULT([no])
1152])
1153CFLAGS=$safe_CFLAGS
1154
1155AC_SUBST(FLAG_MSSE)
1156
1157
sewardj5b754b42002-06-03 22:53:35 +00001158# does this compiler support -mpreferred-stack-boundary=2 ?
1159AC_MSG_CHECKING([if gcc accepts -mpreferred-stack-boundary])
1160
daywalker3664f562003-10-17 13:43:46 +00001161safe_CFLAGS=$CFLAGS
sewardj5b754b42002-06-03 22:53:35 +00001162CFLAGS="-mpreferred-stack-boundary=2"
1163
1164AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001165 return 0;
sewardj5b754b42002-06-03 22:53:35 +00001166],
1167[
1168PREFERRED_STACK_BOUNDARY="-mpreferred-stack-boundary=2"
daywalker3664f562003-10-17 13:43:46 +00001169AC_MSG_RESULT([yes])
sewardj5b754b42002-06-03 22:53:35 +00001170], [
1171PREFERRED_STACK_BOUNDARY=""
1172AC_MSG_RESULT([no])
1173])
daywalker3664f562003-10-17 13:43:46 +00001174CFLAGS=$safe_CFLAGS
sewardj5b754b42002-06-03 22:53:35 +00001175
1176AC_SUBST(PREFERRED_STACK_BOUNDARY)
1177
sewardj535c50f2005-06-04 23:14:53 +00001178
sewardjb5f6f512005-03-10 23:59:00 +00001179# does this compiler support -Wno-pointer-sign ?
bart56730cd2008-05-11 06:41:46 +00001180AC_MSG_CHECKING([if gcc accepts -Wno-pointer-sign])
sewardjb5f6f512005-03-10 23:59:00 +00001181
1182safe_CFLAGS=$CFLAGS
1183CFLAGS="-Wno-pointer-sign"
1184
1185AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001186 return 0;
sewardjb5f6f512005-03-10 23:59:00 +00001187],
1188[
1189no_pointer_sign=yes
1190AC_MSG_RESULT([yes])
1191], [
1192no_pointer_sign=no
1193AC_MSG_RESULT([no])
1194])
1195CFLAGS=$safe_CFLAGS
1196
1197if test x$no_pointer_sign = xyes; then
1198 CFLAGS="$CFLAGS -Wno-pointer-sign"
1199fi
1200
sewardj535c50f2005-06-04 23:14:53 +00001201
tom1e946682005-10-12 11:27:33 +00001202# does this compiler support -Wdeclaration-after-statement ?
bart56730cd2008-05-11 06:41:46 +00001203AC_MSG_CHECKING([if gcc accepts -Wdeclaration-after-statement])
tom1e946682005-10-12 11:27:33 +00001204
1205safe_CFLAGS=$CFLAGS
1206CFLAGS="-Wdeclaration-after-statement"
1207
1208AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001209 return 0;
tom1e946682005-10-12 11:27:33 +00001210],
1211[
tome9814c32005-10-12 11:30:43 +00001212declaration_after_statement=yes
sewardj72a547e2006-01-25 02:58:28 +00001213FLAG_WDECL_AFTER_STMT="-Wdeclaration-after-statement"
tom1e946682005-10-12 11:27:33 +00001214AC_MSG_RESULT([yes])
1215], [
tome9814c32005-10-12 11:30:43 +00001216declaration_after_statement=no
sewardj72a547e2006-01-25 02:58:28 +00001217FLAG_WDECL_AFTER_STMT=""
tom1e946682005-10-12 11:27:33 +00001218AC_MSG_RESULT([no])
1219])
1220CFLAGS=$safe_CFLAGS
1221
sewardj72a547e2006-01-25 02:58:28 +00001222AC_SUBST(FLAG_WDECL_AFTER_STMT)
1223
tome9814c32005-10-12 11:30:43 +00001224if test x$declaration_after_statement = xyes; then
tom1e946682005-10-12 11:27:33 +00001225 CFLAGS="$CFLAGS -Wdeclaration-after-statement"
1226fi
1227
sewardj00f1e622006-03-12 16:47:10 +00001228
barte026bd22009-07-04 12:17:07 +00001229# does this compiler support -Wno-empty-body ?
1230
1231AC_MSG_CHECKING([if gcc accepts -Wno-empty-body])
1232
1233safe_CFLAGS=$CFLAGS
1234CFLAGS="-Wno-empty-body"
1235
1236AC_TRY_COMPILE(
1237[ ],
1238[
1239 return 0;
1240],
1241[
1242AC_SUBST([FLAG_W_NO_EMPTY_BODY], [-Wno-empty-body])
1243AC_MSG_RESULT([yes])
1244],
1245[
1246AC_SUBST([FLAG_W_NO_EMPTY_BODY], [])
1247AC_MSG_RESULT([no])
1248])
1249CFLAGS=$safe_CFLAGS
1250
1251
bart9d865fa2008-06-23 12:11:49 +00001252# does this compiler support -Wno-format-zero-length ?
1253
1254AC_MSG_CHECKING([if gcc accepts -Wno-format-zero-length])
1255
1256safe_CFLAGS=$CFLAGS
1257CFLAGS="-Wno-format-zero-length"
1258
1259AC_TRY_COMPILE(
1260[ ],
1261[
1262 return 0;
1263],
1264[
1265AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [-Wno-format-zero-length])
1266AC_MSG_RESULT([yes])
1267],
1268[
1269AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [])
1270AC_MSG_RESULT([no])
1271])
1272CFLAGS=$safe_CFLAGS
1273
1274
bartbf9b85c2009-08-12 12:55:56 +00001275# does this compiler support -Wno-uninitialized ?
1276
1277AC_MSG_CHECKING([if gcc accepts -Wno-uninitialized])
1278
1279safe_CFLAGS=$CFLAGS
1280CFLAGS="-Wno-uninitialized"
1281
1282AC_TRY_COMPILE(
1283[ ],
1284[
1285 return 0;
1286],
1287[
1288AC_SUBST([FLAG_W_NO_UNINITIALIZED], [-Wno-uninitialized])
1289AC_MSG_RESULT([yes])
1290],
1291[
1292AC_SUBST([FLAG_W_NO_UNINITIALIZED], [])
1293AC_MSG_RESULT([no])
1294])
1295CFLAGS=$safe_CFLAGS
1296
1297
bart56730cd2008-05-11 06:41:46 +00001298# does this compiler support -Wextra or the older -W ?
1299
1300AC_MSG_CHECKING([if gcc accepts -Wextra or -W])
1301
1302safe_CFLAGS=$CFLAGS
1303CFLAGS="-Wextra"
1304
1305AC_TRY_COMPILE(
1306[ ],
1307[
1308 return 0;
1309],
1310[
1311AC_SUBST([FLAG_W_EXTRA], [-Wextra])
1312AC_MSG_RESULT([-Wextra])
1313], [
1314 CFLAGS="-W"
1315 AC_TRY_COMPILE(
1316 [ ],
1317 [
1318 return 0;
1319 ],
1320 [
1321 AC_SUBST([FLAG_W_EXTRA], [-W])
1322 AC_MSG_RESULT([-W])
1323 ], [
1324 AC_SUBST([FLAG_W_EXTRA], [])
1325 AC_MSG_RESULT([not supported])
1326 ])
1327])
1328CFLAGS=$safe_CFLAGS
1329
1330
sewardja72c26d2007-05-01 13:44:08 +00001331# does this compiler support -fno-stack-protector ?
bart56730cd2008-05-11 06:41:46 +00001332AC_MSG_CHECKING([if gcc accepts -fno-stack-protector])
sewardja72c26d2007-05-01 13:44:08 +00001333
1334safe_CFLAGS=$CFLAGS
1335CFLAGS="-fno-stack-protector"
1336
1337AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001338 return 0;
sewardja72c26d2007-05-01 13:44:08 +00001339],
1340[
1341no_stack_protector=yes
1342FLAG_FNO_STACK_PROTECTOR="-fno-stack-protector"
1343AC_MSG_RESULT([yes])
1344], [
1345no_stack_protector=no
1346FLAG_FNO_STACK_PROTECTOR=""
1347AC_MSG_RESULT([no])
1348])
1349CFLAGS=$safe_CFLAGS
1350
1351AC_SUBST(FLAG_FNO_STACK_PROTECTOR)
1352
1353if test x$no_stack_protector = xyes; then
1354 CFLAGS="$CFLAGS -fno-stack-protector"
1355fi
1356
1357
bart56730cd2008-05-11 06:41:46 +00001358# does this compiler support --param inline-unit-growth=... ?
1359
1360AC_MSG_CHECKING([if gcc accepts --param inline-unit-growth])
1361
1362safe_CFLAGS=$CFLAGS
1363CFLAGS="--param inline-unit-growth=900"
1364
1365AC_TRY_COMPILE(
1366[ ],
1367[
1368 return 0;
1369],
1370[
1371AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH],
1372 ["--param inline-unit-growth=900"])
1373AC_MSG_RESULT([yes])
1374], [
1375AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH], [""])
1376AC_MSG_RESULT([no])
1377])
1378CFLAGS=$safe_CFLAGS
1379
1380
tomd55121e2005-12-19 12:40:13 +00001381# does this compiler support __builtin_expect?
1382AC_MSG_CHECKING([if gcc supports __builtin_expect])
bart56730cd2008-05-11 06:41:46 +00001383
tomd55121e2005-12-19 12:40:13 +00001384AC_TRY_LINK(, [
1385return __builtin_expect(1, 1) ? 1 : 0
1386],
1387[
1388ac_have_builtin_expect=yes
1389AC_MSG_RESULT([yes])
1390], [
1391ac_have_builtin_expect=no
1392AC_MSG_RESULT([no])
1393])
1394if test x$ac_have_builtin_expect = xyes ; then
1395 AC_DEFINE(HAVE_BUILTIN_EXPECT, 1, [Define to 1 if gcc supports __builtin_expect.])
1396fi
1397
tom1e946682005-10-12 11:27:33 +00001398
sewardj00f1e622006-03-12 16:47:10 +00001399# does the ppc assembler support "mtocrf" et al?
1400AC_MSG_CHECKING([if ppc32/64 as supports mtocrf/mfocrf])
1401
1402AC_TRY_COMPILE(, [
sewardjdd4cbe12006-03-12 17:27:44 +00001403__asm__ __volatile__("mtocrf 4,0");
1404__asm__ __volatile__("mfocrf 0,4");
sewardj00f1e622006-03-12 16:47:10 +00001405],
1406[
1407ac_have_as_ppc_mftocrf=yes
1408AC_MSG_RESULT([yes])
1409], [
1410ac_have_as_ppc_mftocrf=no
1411AC_MSG_RESULT([no])
1412])
1413if test x$ac_have_as_ppc_mftocrf = xyes ; then
1414 AC_DEFINE(HAVE_AS_PPC_MFTOCRF, 1, [Define to 1 if as supports mtocrf/mfocrf.])
1415fi
1416
1417
sewardjf0aabf82007-03-22 00:24:21 +00001418# does the x86/amd64 assembler understand SSE3 instructions?
sewardjfa18a262007-03-22 12:13:13 +00001419# Note, this doesn't generate a C-level symbol. It generates a
1420# automake-level symbol (BUILD_SSE3_TESTS), used in test Makefile.am's
sewardjf0aabf82007-03-22 00:24:21 +00001421AC_MSG_CHECKING([if x86/amd64 assembler speaks SSE3])
1422
1423AC_TRY_COMPILE(, [
1424 do { long long int x;
1425 __asm__ __volatile__("fisttpq (%0)" : :"r"(&x) ); }
1426 while (0)
1427],
1428[
1429ac_have_as_sse3=yes
1430AC_MSG_RESULT([yes])
1431], [
1432ac_have_as_sse3=no
1433AC_MSG_RESULT([no])
1434])
sewardjfa18a262007-03-22 12:13:13 +00001435
1436AM_CONDITIONAL(BUILD_SSE3_TESTS, test x$ac_have_as_sse3 = xyes)
sewardjf0aabf82007-03-22 00:24:21 +00001437
1438
sewardj6d6da5b2008-02-09 12:07:40 +00001439# Ditto for SSSE3 instructions (note extra S)
1440# Note, this doesn't generate a C-level symbol. It generates a
1441# automake-level symbol (BUILD_SSSE3_TESTS), used in test Makefile.am's
1442AC_MSG_CHECKING([if x86/amd64 assembler speaks SSSE3])
1443
1444AC_TRY_COMPILE(, [
1445 do { long long int x;
1446 __asm__ __volatile__(
1447 "pabsb (%0),%%xmm7" : : "r"(&x) : "xmm7" ); }
1448 while (0)
1449],
1450[
1451ac_have_as_ssse3=yes
1452AC_MSG_RESULT([yes])
1453], [
1454ac_have_as_ssse3=no
1455AC_MSG_RESULT([no])
1456])
1457
1458AM_CONDITIONAL(BUILD_SSSE3_TESTS, test x$ac_have_as_ssse3 = xyes)
1459
1460
sewardjb5f6f512005-03-10 23:59:00 +00001461# Check for TLS support in the compiler and linker
bartca9f2ad2008-06-02 07:14:20 +00001462if test "x${cross_compiling}" = "xno"; then
1463# Native compilation: check whether running a program using TLS succeeds.
1464# Linking only is not sufficient -- e.g. on Red Hat 7.3 linking TLS programs
1465# succeeds but running programs using TLS fails.
1466AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1467 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1468 [vg_cv_tls=$enableval],
1469 [AC_RUN_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
1470 [[return foo;]])],
1471 [vg_cv_tls=yes],
1472 [vg_cv_tls=no])])])
1473else
1474# Cross-compiling: check whether linking a program using TLS succeeds.
sewardjb5f6f512005-03-10 23:59:00 +00001475AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1476 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1477 [vg_cv_tls=$enableval],
bartcddeaf52008-05-25 15:58:11 +00001478 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
sewardjb5f6f512005-03-10 23:59:00 +00001479 [[return foo;]])],
1480 [vg_cv_tls=yes],
1481 [vg_cv_tls=no])])])
bartca9f2ad2008-06-02 07:14:20 +00001482fi
sewardjb5f6f512005-03-10 23:59:00 +00001483
1484if test "$vg_cv_tls" = yes; then
1485AC_DEFINE([HAVE_TLS], 1, [can use __thread to define thread-local variables])
1486fi
sewardj5b754b42002-06-03 22:53:35 +00001487
sewardj535c50f2005-06-04 23:14:53 +00001488
njn7fd6d382009-01-22 21:56:32 +00001489#----------------------------------------------------------------------------
bart62f54e42008-07-28 11:35:10 +00001490# Checks for C header files.
njn7fd6d382009-01-22 21:56:32 +00001491#----------------------------------------------------------------------------
1492
sewardjde4a1d02002-03-22 01:27:54 +00001493AC_HEADER_STDC
bartf5ceec82008-04-26 07:45:10 +00001494AC_CHECK_HEADERS([ \
bart1f2b1432009-01-16 12:06:54 +00001495 asm/unistd.h \
bartf5ceec82008-04-26 07:45:10 +00001496 endian.h \
1497 mqueue.h \
1498 sys/endian.h \
1499 sys/epoll.h \
1500 sys/eventfd.h \
bartce48fa92008-04-26 10:59:46 +00001501 sys/klog.h \
bartf5ceec82008-04-26 07:45:10 +00001502 sys/poll.h \
bart71bad292008-04-27 11:43:23 +00001503 sys/signal.h \
bartf5ceec82008-04-26 07:45:10 +00001504 sys/signalfd.h \
bart71bad292008-04-27 11:43:23 +00001505 sys/syscall.h \
1506 sys/time.h \
1507 sys/types.h \
bartf5ceec82008-04-26 07:45:10 +00001508 ])
sewardjde4a1d02002-03-22 01:27:54 +00001509
njn7fd6d382009-01-22 21:56:32 +00001510#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001511# Checks for typedefs, structures, and compiler characteristics.
njn7fd6d382009-01-22 21:56:32 +00001512#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001513AC_TYPE_UID_T
1514AC_TYPE_OFF_T
1515AC_TYPE_SIZE_T
1516AC_HEADER_TIME
1517
sewardj535c50f2005-06-04 23:14:53 +00001518
njn7fd6d382009-01-22 21:56:32 +00001519#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001520# Checks for library functions.
njn7fd6d382009-01-22 21:56:32 +00001521#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001522AC_FUNC_MEMCMP
1523AC_FUNC_MMAP
1524AC_TYPE_SIGNAL
1525
bart71bad292008-04-27 11:43:23 +00001526AC_CHECK_LIB([rt], [clock_gettime])
bart41ac62a2008-07-07 16:58:03 +00001527
bartf5ceec82008-04-26 07:45:10 +00001528AC_CHECK_FUNCS([ \
bart71bad292008-04-27 11:43:23 +00001529 clock_gettime\
bartf5ceec82008-04-26 07:45:10 +00001530 epoll_create \
1531 epoll_pwait \
bartf5ceec82008-04-26 07:45:10 +00001532 floor \
bartce48fa92008-04-26 10:59:46 +00001533 klogctl \
bartf5ceec82008-04-26 07:45:10 +00001534 mallinfo \
1535 memchr \
1536 memset \
1537 mkdir \
njnf76d27a2009-05-28 01:53:07 +00001538 mremap \
bartf5ceec82008-04-26 07:45:10 +00001539 ppoll \
bart6d45e922009-01-20 13:45:38 +00001540 pthread_barrier_init \
1541 pthread_condattr_setclock \
1542 pthread_mutex_timedlock \
1543 pthread_rwlock_timedrdlock \
1544 pthread_rwlock_timedwrlock \
1545 pthread_spin_lock \
bartd1f724c2009-08-26 18:11:18 +00001546 readlinkat \
bartf5ceec82008-04-26 07:45:10 +00001547 semtimedop \
1548 signalfd \
njn6cc22472009-03-16 03:46:48 +00001549 sigwaitinfo \
bart71bad292008-04-27 11:43:23 +00001550 syscall \
bartf5ceec82008-04-26 07:45:10 +00001551 strchr \
1552 strdup \
1553 strpbrk \
1554 strrchr \
1555 strstr \
1556 timerfd \
1557 utimensat \
1558 ])
sewardjde4a1d02002-03-22 01:27:54 +00001559
bart623eec32008-07-29 17:54:49 +00001560# AC_CHECK_LIB adds any library found to the variable LIBS, and links these
1561# libraries with any shared object and/or executable. This is NOT what we
1562# want for e.g. vgpreload_core-x86-linux.so
1563LIBS=""
sewardj80637752006-03-02 13:48:21 +00001564
bart6d45e922009-01-20 13:45:38 +00001565AM_CONDITIONAL([HAVE_PTHREAD_BARRIER],
1566 [test x$ac_cv_func_pthread_barrier_init = xyes])
bart2eaa8f22009-01-20 14:01:16 +00001567AM_CONDITIONAL([HAVE_PTHREAD_MUTEX_TIMEDLOCK],
1568 [test x$ac_cv_func_pthread_mutex_timedlock = xyes])
bart6d45e922009-01-20 13:45:38 +00001569AM_CONDITIONAL([HAVE_PTHREAD_SPINLOCK],
1570 [test x$ac_cv_func_pthread_spin_lock = xyes])
1571
njn7fd6d382009-01-22 21:56:32 +00001572
1573#----------------------------------------------------------------------------
1574# MPI checks
1575#----------------------------------------------------------------------------
sewardj03d86f22006-10-17 00:57:24 +00001576# Do we have a useable MPI setup on the primary and/or secondary targets?
1577# On Linux, by default, assumes mpicc and -m32/-m64
1578# On AIX, by default, assumes mpxlc and -q32/-q64
sewardje9fa5062006-03-12 18:29:18 +00001579# Note: this is a kludge in that it assumes the specified mpicc
sewardj03d86f22006-10-17 00:57:24 +00001580# understands -m32/-m64/-q32/-q64 regardless of what is specified using
1581# --with-mpicc=.
sewardj0ad46092006-03-02 17:09:16 +00001582MPI_CC="mpicc"
njn7fd6d382009-01-22 21:56:32 +00001583if test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
1584 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001585 MPI_CC="mpxlc"
1586fi
1587
sewardje9fa5062006-03-12 18:29:18 +00001588mflag_primary=
njn7fd6d382009-01-22 21:56:32 +00001589if test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
1590 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX ; then
sewardje9fa5062006-03-12 18:29:18 +00001591 mflag_primary=$FLAG_M32
njn7fd6d382009-01-22 21:56:32 +00001592elif test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \
1593 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX ; then
sewardje9fa5062006-03-12 18:29:18 +00001594 mflag_primary=$FLAG_M64
njn7fd6d382009-01-22 21:56:32 +00001595elif test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001596 mflag_primary=-q32
njn7fd6d382009-01-22 21:56:32 +00001597elif test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001598 mflag_primary=-q64
sewardje9fa5062006-03-12 18:29:18 +00001599fi
1600
sewardj03d86f22006-10-17 00:57:24 +00001601mflag_secondary=
njn7fd6d382009-01-22 21:56:32 +00001602if test x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX \
1603 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX ; then
sewardj03d86f22006-10-17 00:57:24 +00001604 mflag_secondary=$FLAG_M32
njn7fd6d382009-01-22 21:56:32 +00001605elif test x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001606 mflag_secondary=-q32
1607fi
1608
1609
sewardj0ad46092006-03-02 17:09:16 +00001610AC_ARG_WITH(mpicc,
sewardjb70a6132006-05-27 21:14:09 +00001611 [ --with-mpicc= Specify name of MPI2-ised C compiler],
sewardj0ad46092006-03-02 17:09:16 +00001612 MPI_CC=$withval
1613)
sewardj03d86f22006-10-17 00:57:24 +00001614AC_SUBST(MPI_CC)
1615
1616## See if MPI_CC works for the primary target
1617##
1618AC_MSG_CHECKING([primary target for usable MPI2-compliant C compiler and mpi.h])
sewardj0ad46092006-03-02 17:09:16 +00001619saved_CC=$CC
sewardjde4f3842006-03-09 02:41:41 +00001620saved_CFLAGS=$CFLAGS
sewardj0ad46092006-03-02 17:09:16 +00001621CC=$MPI_CC
sewardje9fa5062006-03-12 18:29:18 +00001622CFLAGS=$mflag_primary
sewardjd3fcc642006-03-09 02:49:56 +00001623AC_TRY_LINK([
sewardj1a85e602006-03-08 15:26:10 +00001624#include <mpi.h>
1625#include <stdio.h>
sewardjde4f3842006-03-09 02:41:41 +00001626],[
1627 int r = MPI_Init(NULL,NULL);
1628 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1629 return r;
1630], [
sewardj03d86f22006-10-17 00:57:24 +00001631ac_have_mpi2_pri=yes
sewardj1a85e602006-03-08 15:26:10 +00001632AC_MSG_RESULT([yes, $MPI_CC])
sewardj80637752006-03-02 13:48:21 +00001633], [
sewardj03d86f22006-10-17 00:57:24 +00001634ac_have_mpi2_pri=no
sewardj80637752006-03-02 13:48:21 +00001635AC_MSG_RESULT([no])
1636])
sewardj0ad46092006-03-02 17:09:16 +00001637CC=$saved_CC
sewardjde4f3842006-03-09 02:41:41 +00001638CFLAGS=$saved_CFLAGS
sewardj03d86f22006-10-17 00:57:24 +00001639AM_CONDITIONAL(BUILD_MPIWRAP_PRI, test x$ac_have_mpi2_pri = xyes)
sewardj80637752006-03-02 13:48:21 +00001640
sewardj03d86f22006-10-17 00:57:24 +00001641## See if MPI_CC works for the secondary target. Complication: what if
1642## there is no secondary target? We need this to then fail.
1643## Kludge this by making MPI_CC something which will surely fail in
1644## such a case.
1645##
1646AC_MSG_CHECKING([secondary target for usable MPI2-compliant C compiler and mpi.h])
1647saved_CC=$CC
1648saved_CFLAGS=$CFLAGS
njn7fd6d382009-01-22 21:56:32 +00001649if test x$VGCONF_PLATFORM_SEC_CAPS = x ; then
sewardj03d86f22006-10-17 00:57:24 +00001650 CC="$MPI_CC this will surely fail"
1651else
1652 CC=$MPI_CC
1653fi
1654CFLAGS=$mflag_secondary
1655AC_TRY_LINK([
1656#include <mpi.h>
1657#include <stdio.h>
1658],[
1659 int r = MPI_Init(NULL,NULL);
1660 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1661 return r;
1662], [
1663ac_have_mpi2_sec=yes
1664AC_MSG_RESULT([yes, $MPI_CC])
1665], [
1666ac_have_mpi2_sec=no
1667AC_MSG_RESULT([no])
1668])
1669CC=$saved_CC
1670CFLAGS=$saved_CFLAGS
1671AM_CONDITIONAL(BUILD_MPIWRAP_SEC, test x$ac_have_mpi2_sec = xyes)
sewardj80637752006-03-02 13:48:21 +00001672
1673
njn7fd6d382009-01-22 21:56:32 +00001674#----------------------------------------------------------------------------
1675# Other library checks
1676#----------------------------------------------------------------------------
sewardj493c4ef2008-12-13 16:45:19 +00001677# There now follow some tests for QtCore, Boost, and OpenMP. These
1678# tests are present because Drd has some regression tests that use
1679# these packages. All regression test programs all compiled only
1680# for the primary target. And so it is important that the configure
1681# checks that follow, use the correct -m32 or -m64 flag for the
1682# primary target (called $mflag_primary). Otherwise, we can end up
1683# in a situation (eg) where, on amd64-linux, the test for Boost checks
1684# for usable 64-bit Boost facilities, but because we are doing a 32-bit
1685# only build (meaning, the primary target is x86-linux), the build
1686# of the regtest programs that use Boost fails, because they are
1687# build as 32-bit (IN THIS EXAMPLE).
1688#
1689# Hence: ALWAYS USE $mflag_primary FOR CONFIGURE TESTS FOR FACILITIES
1690# NEEDED BY THE REGRESSION TEST PROGRAMS.
1691
1692
bart21d3cfc2008-08-02 09:08:17 +00001693# The test below verifies whether the QtCore package been installed.
1694# This test works as follows:
1695# - If pkg-config was not installed at the time autogen.sh was run,
1696# the definition of the PKG_CHECK_EXISTS() macro will not be found by
1697# autogen.sh. Augogen.sh will generate a configure script that prints
1698# a warning about pkg-config and proceeds as if Qt4 has not been installed.
1699# - If pkg-config was installed at the time autogen.sh was run,
1700# the generated configure script will try to detect the presence of the
1701# Qt4 QtCore library by looking up compile and linker flags in the file
1702# called QtCore.pc.
1703# - pkg-config settings can be overridden via the configure variables
1704# QTCORE_CFLAGS and QTCORE_LIBS (added by the pkg-config m4 macro's to the
1705# configure script -- see also ./configure --help).
1706# - The QTCORE_CFLAGS and QTCORE_LIBS configure variables can be used even if
1707# the pkg-config executable is not present on the system on which the
1708# configure script is run.
bart41ac62a2008-07-07 16:58:03 +00001709
bart21d3cfc2008-08-02 09:08:17 +00001710ifdef(
1711 [PKG_CHECK_EXISTS],
1712 [PKG_CHECK_EXISTS(
1713 [QtCore],
1714 [
1715 PKG_CHECK_MODULES([QTCORE], [QtCore])
bart11fbd892008-09-21 15:00:58 +00001716 # Paranoia: don't trust the result reported by pkg-config, but when
1717 # pkg-config reports that QtCore has been found, verify whether linking
1718 # programs with QtCore succeeds.
1719 AC_LANG(C++)
1720 safe_CXXFLAGS="${CXXFLAGS}"
sewardj493c4ef2008-12-13 16:45:19 +00001721 CXXFLAGS="${QTCORE_CFLAGS} ${QTCORE_LIBS} $mflag_primary"
bart11fbd892008-09-21 15:00:58 +00001722 AC_TRY_LINK(
1723 [#include <QMutex>],
1724 [QMutex Mutex;],
1725 [ac_have_qtcore=yes],
1726 [
1727 AC_MSG_WARN([Although pkg-config detected Qt4, linking Qt4 programs fails. Skipping Qt4.])
1728 ac_have_qtcore=no
1729 ]
1730 )
1731 CXXFLAGS="${safe_CXXFLAGS}"
bart21d3cfc2008-08-02 09:08:17 +00001732 ],
1733 [
1734 ac_have_qtcore=no
1735 ]
1736 )
1737 ],
1738 AC_MSG_WARN([pkg-config has not been installed or is too old.])
1739 AC_MSG_WARN([Detection of Qt4 will be skipped.])
1740 [ac_have_qtcore=no]
1741)
bart41ac62a2008-07-07 16:58:03 +00001742
1743AM_CONDITIONAL([HAVE_QTCORE], [test x$ac_have_qtcore = xyes])
1744
1745
bart62f54e42008-07-28 11:35:10 +00001746# Test for QMutex::tryLock(int), which has been introduced in Qt 4.3.
1747# See also http://doc.trolltech.com/4.3/qmutex.html.
1748if test x$ac_have_qtcore = xyes; then
1749 AC_MSG_CHECKING([for Qt4 QMutex::tryLock(int)])
1750 AC_LANG(C++)
bart21d3cfc2008-08-02 09:08:17 +00001751 safe_CXXFLAGS="${CXXFLAGS}"
sewardj493c4ef2008-12-13 16:45:19 +00001752 CXXFLAGS="${QTCORE_CFLAGS} $mflag_primary"
bart62f54e42008-07-28 11:35:10 +00001753 AC_TRY_COMPILE([
1754 #include <QtCore/QMutex>
1755 ],
1756 [
1757 QMutex M;
1758 M.tryLock(1);
1759 M.unlock();
1760 return 0;
1761 ],
1762 [
1763 AC_MSG_RESULT([yes])
1764 AC_DEFINE([HAVE_QTCORE_QMUTEX_TRYLOCK_INT], [1], [Define to 1 if the installed version of Qt4 provides QMutex::tryLock(int).])
1765 ],
1766 [
1767 AC_MSG_RESULT([no])
1768 ])
bart21d3cfc2008-08-02 09:08:17 +00001769 CXXFLAGS="${safe_CXXFLAGS}"
bart62f54e42008-07-28 11:35:10 +00001770 AC_LANG(C)
1771fi
1772
1773
bart4f43e002009-11-09 16:07:43 +00001774# Test for QAtomicInt, which has been introduced in Qt 4.4.
1775# See also http://doc.trolltech.com/4.4/qatomicint.html.
1776if test x$ac_have_qtcore = xyes; then
bart9da08ba2009-11-11 19:22:05 +00001777 AC_MSG_CHECKING([for Qt4 QAtomicInt])
bart4f43e002009-11-09 16:07:43 +00001778 AC_LANG(C++)
1779 safe_CXXFLAGS="${CXXFLAGS}"
1780 CXXFLAGS="${QTCORE_CFLAGS} $mflag_primary"
1781 AC_TRY_COMPILE([
1782 #include <QtCore/QAtomicInt>
1783 ],
1784 [
1785 QAtomicInt I;
1786 I.testAndSetOrdered(0, 1);
1787 return 0;
1788 ],
1789 [
1790 ac_have_qtcore_qatomicint=yes
1791 AC_MSG_RESULT([yes])
1792 AC_DEFINE([HAVE_QTCORE_QATOMICINT], [1], [Define to 1 if the installed version of Qt4 provides QAtomicInt.])
1793 ],
1794 [
1795 ac_have_qtcore_qatomicint=no
1796 AC_MSG_RESULT([no])
1797 ])
1798 CXXFLAGS="${safe_CXXFLAGS}"
1799 AC_LANG(C)
1800fi
1801
1802AM_CONDITIONAL([HAVE_QTCORE_QATOMICINT], [test x$ac_have_qtcore_qatomicint = xyes])
1803
1804
1805
sewardj493c4ef2008-12-13 16:45:19 +00001806# Check whether the boost library 1.35 or later has been installed.
1807# The Boost.Threads library has undergone a major rewrite in version 1.35.0.
1808
1809AC_MSG_CHECKING([for boost])
1810
1811AC_LANG(C++)
1812safe_CXXFLAGS=$CXXFLAGS
1813CXXFLAGS="-lboost_thread-mt $mflag_primary"
1814
1815AC_LINK_IFELSE(
1816[
1817#include <boost/thread.hpp>
1818static void thread_func(void)
1819{ }
1820int main(int argc, char** argv)
1821{
1822 boost::thread t(thread_func);
1823 return 0;
1824}
1825],
1826[
1827ac_have_boost_1_35=yes
1828AC_SUBST([BOOST_CFLAGS], [])
1829AC_SUBST([BOOST_LIBS], ["${CXXFLAGS}"])
1830AC_MSG_RESULT([yes])
1831], [
1832ac_have_boost_1_35=no
1833AC_MSG_RESULT([no])
1834])
1835
1836CXXFLAGS=$safe_CXXFLAGS
1837AC_LANG(C)
1838
1839AM_CONDITIONAL([HAVE_BOOST_1_35], [test x$ac_have_boost_1_35 = xyes])
1840
1841
1842# does this compiler support -fopenmp, does it have the include file
1843# <omp.h> and does it have libgomp ?
1844
1845AC_MSG_CHECKING([for OpenMP])
1846
1847safe_CFLAGS=$CFLAGS
sewardjc876a2f2009-01-22 22:44:30 +00001848CFLAGS="-fopenmp $mflag_primary"
sewardj493c4ef2008-12-13 16:45:19 +00001849
1850AC_LINK_IFELSE(
1851[
1852#include <omp.h>
1853int main(int argc, char** argv)
1854{
1855 omp_set_dynamic(0);
1856 return 0;
1857}
1858],
1859[
1860ac_have_openmp=yes
1861AC_MSG_RESULT([yes])
1862], [
1863ac_have_openmp=no
1864AC_MSG_RESULT([no])
1865])
1866CFLAGS=$safe_CFLAGS
1867
1868AM_CONDITIONAL([HAVE_OPENMP], [test x$ac_have_openmp = xyes])
1869
1870
sewardjc876a2f2009-01-22 22:44:30 +00001871# does this compiler have built-in functions for atomic memory access ?
1872AC_MSG_CHECKING([if gcc supports __sync_bool_compare_and_swap])
1873
1874safe_CFLAGS=$CFLAGS
1875CFLAGS="$mflag_primary"
1876
1877AC_TRY_LINK(,
1878[
1879 int variable = 1;
1880 return (__sync_bool_compare_and_swap(&variable, 1, 2)
1881 && __sync_add_and_fetch(&variable, 1) ? 1 : 0)
1882],
1883[
bartc82d1372009-05-31 16:21:23 +00001884 ac_have_builtin_atomic=yes
sewardjc876a2f2009-01-22 22:44:30 +00001885 AC_MSG_RESULT([yes])
1886 AC_DEFINE(HAVE_BUILTIN_ATOMIC, 1, [Define to 1 if gcc supports __sync_bool_compare_and_swap() a.o.])
1887],
1888[
bartc82d1372009-05-31 16:21:23 +00001889 ac_have_builtin_atomic=no
sewardjc876a2f2009-01-22 22:44:30 +00001890 AC_MSG_RESULT([no])
1891])
1892
1893CFLAGS=$safe_CFLAGS
1894
bartc82d1372009-05-31 16:21:23 +00001895AM_CONDITIONAL([HAVE_BUILTIN_ATOMIC], [test x$ac_have_builtin_atomic = xyes])
1896
sewardjc876a2f2009-01-22 22:44:30 +00001897
njn7fd6d382009-01-22 21:56:32 +00001898#----------------------------------------------------------------------------
1899# Ok. We're done checking.
1900#----------------------------------------------------------------------------
sewardj80637752006-03-02 13:48:21 +00001901
njn8b68b642009-06-24 00:37:09 +00001902# Nb: VEX/Makefile is generated from Makefile.vex.in.
1903AC_CONFIG_FILES([
sewardjde4a1d02002-03-22 01:27:54 +00001904 Makefile
njn8b68b642009-06-24 00:37:09 +00001905 VEX/Makefile:Makefile.vex.in
njn25cac76cb2002-09-23 11:21:57 +00001906 valgrind.spec
muellerbddd6072003-11-19 21:50:07 +00001907 valgrind.pc
dirk07596a22008-04-25 11:33:30 +00001908 glibc-2.X.supp
njn254d542432002-09-23 16:09:39 +00001909 docs/Makefile
1910 tests/Makefile
njnc2e7f482002-09-27 08:44:17 +00001911 tests/vg_regtest
njnec0c27a2005-12-10 23:11:28 +00001912 perf/Makefile
1913 perf/vg_perf
njn254d542432002-09-23 16:09:39 +00001914 include/Makefile
njn7a6e7462002-11-09 17:53:30 +00001915 auxprogs/Makefile
njn8b68b642009-06-24 00:37:09 +00001916 mpi/Makefile
njn25ab726032002-09-23 16:24:41 +00001917 coregrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001918 memcheck/Makefile
1919 memcheck/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001920 memcheck/tests/amd64/Makefile
njnc6168192004-11-29 13:54:10 +00001921 memcheck/tests/x86/Makefile
njn3b3b76d2009-01-19 03:44:19 +00001922 memcheck/tests/linux/Makefile
njnf76d27a2009-05-28 01:53:07 +00001923 memcheck/tests/darwin/Makefile
njna454ec02009-01-19 03:16:59 +00001924 memcheck/tests/x86-linux/Makefile
njn29a5c012009-05-06 06:15:55 +00001925 memcheck/perf/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001926 cachegrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001927 cachegrind/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001928 cachegrind/tests/x86/Makefile
njnf2df9b52002-10-04 11:35:47 +00001929 cachegrind/cg_annotate
weidendoa17f2a32006-03-20 10:27:30 +00001930 callgrind/Makefile
1931 callgrind/callgrind_annotate
1932 callgrind/callgrind_control
1933 callgrind/tests/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001934 helgrind/Makefile
njnf2df9b52002-10-04 11:35:47 +00001935 helgrind/tests/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001936 massif/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001937 massif/tests/Makefile
njn734b8052007-11-01 04:40:37 +00001938 massif/perf/Makefile
njnd5a8d242007-11-02 20:44:57 +00001939 massif/ms_print
njn25cac76cb2002-09-23 11:21:57 +00001940 lackey/Makefile
njnf2df9b52002-10-04 11:35:47 +00001941 lackey/tests/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001942 none/Makefile
1943 none/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001944 none/tests/amd64/Makefile
cerion85665ca2005-06-20 15:51:07 +00001945 none/tests/ppc32/Makefile
sewardj2c48c7b2005-11-29 13:05:56 +00001946 none/tests/ppc64/Makefile
njnc6168192004-11-29 13:54:10 +00001947 none/tests/x86/Makefile
njn0458a122009-02-13 06:23:46 +00001948 none/tests/linux/Makefile
njnf76d27a2009-05-28 01:53:07 +00001949 none/tests/darwin/Makefile
njn06ca3322009-04-15 23:10:04 +00001950 none/tests/x86-linux/Makefile
sewardj9c606bd2008-09-18 18:12:50 +00001951 exp-ptrcheck/Makefile
1952 exp-ptrcheck/tests/Makefile
bartccf17de2008-07-04 15:14:35 +00001953 drd/Makefile
bartccf17de2008-07-04 15:14:35 +00001954 drd/scripts/download-and-build-splash2
1955 drd/tests/Makefile
njndbebecc2009-07-14 01:39:54 +00001956 exp-bbv/Makefile
njndbebecc2009-07-14 01:39:54 +00001957 exp-bbv/tests/Makefile
1958 exp-bbv/tests/x86/Makefile
1959 exp-bbv/tests/x86-linux/Makefile
1960 exp-bbv/tests/amd64-linux/Makefile
1961 exp-bbv/tests/ppc32-linux/Makefile
njn8b68b642009-06-24 00:37:09 +00001962])
1963AC_OUTPUT
gobry3b777892002-04-04 09:18:39 +00001964
1965cat<<EOF
1966
njn311303f2009-02-06 03:46:50 +00001967 Maximum build arch: ${ARCH_MAX}
1968 Primary build arch: ${VGCONF_ARCH_PRI}
njn3f8a6e92009-06-02 00:20:47 +00001969 Secondary build arch: ${VGCONF_ARCH_SEC}
njn311303f2009-02-06 03:46:50 +00001970 Build OS: ${VGCONF_OS}
njn7fd6d382009-01-22 21:56:32 +00001971 Primary build target: ${VGCONF_PLATFORM_PRI_CAPS}
1972 Secondary build target: ${VGCONF_PLATFORM_SEC_CAPS}
sewardje95d94f2008-09-19 09:02:19 +00001973 Default supp files: ${DEFAULT_SUPP}
gobry3b777892002-04-04 09:18:39 +00001974
gobry3b777892002-04-04 09:18:39 +00001975EOF