blob: a47fede39f9f5f1bac7740b296d03ceaa1e0875b [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#----------------------------------------------------------------------------
bartaca399a2010-08-15 18:54:15 +000021CFLAGS="-Wno-long-long $CFLAGS"
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
bart07de2c92010-05-29 06:44:28 +000042# provide a very basic definition for AC_PROG_SED if it's not provided by
43# autoconf (as e.g. in autoconf 2.59).
44m4_ifndef([AC_PROG_SED],
45 [AC_DEFUN([AC_PROG_SED],
46 [AC_ARG_VAR([SED])
47 AC_CHECK_PROGS([SED],[gsed sed])])])
bart12e91122010-05-15 08:37:24 +000048AC_PROG_SED
sewardjde4a1d02002-03-22 01:27:54 +000049
bartcddeaf52008-05-25 15:58:11 +000050# If no AR variable was specified, look up the name of the archiver. Otherwise
51# do not touch the AR variable.
52if test "x$AR" = "x"; then
bart07de2c92010-05-29 06:44:28 +000053 AC_PATH_PROGS([AR], [`echo $LD | $SED 's/ld$/ar/'` "ar"], [ar])
bartcddeaf52008-05-25 15:58:11 +000054fi
55AC_ARG_VAR([AR],[Archiver command])
56
gobrye721a522002-03-22 13:38:30 +000057# Check for the compiler support
58if test "${GCC}" != "yes" ; then
59 AC_MSG_ERROR([Valgrind relies on GCC to be compiled])
60fi
61
sewardj2f685952002-12-22 19:32:23 +000062# figure out where perl lives
63AC_PATH_PROG(PERL, perl)
64
njn9315df32003-04-16 20:50:50 +000065# figure out where gdb lives
sewardjf8722ca2008-11-17 00:20:45 +000066AC_PATH_PROG(GDB, gdb, "/no/gdb/was/found/at/configure/time")
njnfe408942004-11-23 17:52:24 +000067AC_DEFINE_UNQUOTED(GDB_PATH, "$GDB", [path to GDB])
njn9315df32003-04-16 20:50:50 +000068
daywalker48ccca52002-04-15 00:31:58 +000069# some older automake's don't have it so try something on our own
70ifdef([AM_PROG_AS],[AM_PROG_AS],
71[
gobry1be19852002-03-26 20:44:55 +000072AS="${CC}"
73AC_SUBST(AS)
gobry3b777892002-04-04 09:18:39 +000074
gobry1be19852002-03-26 20:44:55 +000075ASFLAGS=""
76AC_SUBST(ASFLAGS)
daywalker48ccca52002-04-15 00:31:58 +000077])
gobry3b777892002-04-04 09:18:39 +000078
gobry3b777892002-04-04 09:18:39 +000079
njn0d2e58f2009-02-25 04:57:56 +000080# Check if 'diff' supports -u (universal diffs) and use it if possible.
81
82AC_MSG_CHECKING([for diff -u])
83AC_SUBST(DIFF)
84
85# Comparing two identical files results in 0, unless -u isn't supported (as
86# it's not on AIX).
njn31f665e2009-02-26 21:25:50 +000087tmpfile="tmp-xxx-yyy-zzz"
88touch $tmpfile;
89if diff -u $tmpfile $tmpfile ; then
njn0d2e58f2009-02-25 04:57:56 +000090 AC_MSG_RESULT([yes])
91 DIFF="diff -u"
92else
93 AC_MSG_RESULT([no])
94 DIFF="diff"
95fi
njn31f665e2009-02-26 21:25:50 +000096rm $tmpfile
njn0d2e58f2009-02-25 04:57:56 +000097
98
sewardj535c50f2005-06-04 23:14:53 +000099# We don't want gcc < 3.0
gobrye721a522002-03-22 13:38:30 +0000100AC_MSG_CHECKING([for a supported version of gcc])
101
bart07de2c92010-05-29 06:44:28 +0000102[gcc_version=`${CC} --version | head -n 1 | $SED 's/^[^0-9]*\([0-9.]*\).*$/\1/'`]
gobrye721a522002-03-22 13:38:30 +0000103
104case "${gcc_version}" in
bart76719bf2008-04-19 07:47:56 +0000105 2.*)
gobrye721a522002-03-22 13:38:30 +0000106 AC_MSG_RESULT([no (${gcc_version})])
sewardj535c50f2005-06-04 23:14:53 +0000107 AC_MSG_ERROR([please use a recent (>= gcc-3.0) version of gcc])
108 ;;
gobrye721a522002-03-22 13:38:30 +0000109 *)
110 AC_MSG_RESULT([ok (${gcc_version})])
111 ;;
112esac
113
njn7fd6d382009-01-22 21:56:32 +0000114#----------------------------------------------------------------------------
115# Arch/OS/platform tests.
116#----------------------------------------------------------------------------
117# We create a number of arch/OS/platform-related variables. We prefix them
118# all with "VGCONF_" which indicates that they are defined at
119# configure-time, and distinguishes them from the VGA_*/VGO_*/VGP_*
120# variables used when compiling C files.
sewardj03d86f22006-10-17 00:57:24 +0000121
sewardjde4a1d02002-03-22 01:27:54 +0000122AC_CANONICAL_HOST
123
124AC_MSG_CHECKING([for a supported CPU])
sewardjbc692db2006-01-04 03:31:07 +0000125
njn7fd6d382009-01-22 21:56:32 +0000126# ARCH_MAX reflects the most that this CPU can do: for example if it
127# is a 64-bit capable PowerPC, then it must be set to ppc64 and not ppc32.
128# Ditto for amd64. It is used for more configuration below, but is not used
129# outside this file.
gobrye721a522002-03-22 13:38:30 +0000130case "${host_cpu}" in
sewardjde4a1d02002-03-22 01:27:54 +0000131 i?86)
132 AC_MSG_RESULT([ok (${host_cpu})])
njn7fd6d382009-01-22 21:56:32 +0000133 ARCH_MAX="x86"
sewardjde4a1d02002-03-22 01:27:54 +0000134 ;;
135
njnfe408942004-11-23 17:52:24 +0000136 x86_64)
137 AC_MSG_RESULT([ok (${host_cpu})])
njn7fd6d382009-01-22 21:56:32 +0000138 ARCH_MAX="amd64"
njnfe408942004-11-23 17:52:24 +0000139 ;;
140
sewardj2c48c7b2005-11-29 13:05:56 +0000141 powerpc64)
njn7fd6d382009-01-22 21:56:32 +0000142 # This value can only happen on Linux, not on AIX
sewardj2c48c7b2005-11-29 13:05:56 +0000143 AC_MSG_RESULT([ok (${host_cpu})])
njn7fd6d382009-01-22 21:56:32 +0000144 ARCH_MAX="ppc64"
sewardj2c48c7b2005-11-29 13:05:56 +0000145 ;;
146
147 powerpc)
njn7fd6d382009-01-22 21:56:32 +0000148 # Complexity. 'powerpc' on AIX implies a 64-bit capable CPU.
149 # Whereas in Linux that means only a 32-bit capable CPU.
cerion85665ca2005-06-20 15:51:07 +0000150 AC_MSG_RESULT([ok (${host_cpu})])
sewardj03d86f22006-10-17 00:57:24 +0000151 case "${host_os}" in
152 aix5.*)
njn7fd6d382009-01-22 21:56:32 +0000153 ARCH_MAX="ppc64"
sewardj03d86f22006-10-17 00:57:24 +0000154 ;;
155 *)
njn7fd6d382009-01-22 21:56:32 +0000156 ARCH_MAX="ppc32"
sewardj03d86f22006-10-17 00:57:24 +0000157 ;;
158 esac
nethercote9bcc9062004-10-13 13:50:01 +0000159 ;;
160
sewardj59570ff2010-01-01 11:59:33 +0000161 armv7*)
162 AC_MSG_RESULT([ok (${host_cpu})])
163 ARCH_MAX="arm"
164 ;;
165
sewardjde4a1d02002-03-22 01:27:54 +0000166 *)
167 AC_MSG_RESULT([no (${host_cpu})])
nethercote81d5c662004-10-13 13:18:51 +0000168 AC_MSG_ERROR([Unsupported host architecture. Sorry])
sewardjde4a1d02002-03-22 01:27:54 +0000169 ;;
170esac
171
njn7fd6d382009-01-22 21:56:32 +0000172#----------------------------------------------------------------------------
173
sewardj86e992f2006-01-28 18:39:09 +0000174# Sometimes it's convenient to subvert the bi-arch build system and
175# just have a single build even though the underlying platform is
176# capable of both. Hence handle --enable-only64bit and
177# --enable-only32bit. Complain if both are issued :-)
njn7fd6d382009-01-22 21:56:32 +0000178# [Actually, if either of these options are used, I think both get built,
179# but only one gets installed. So if you use an in-place build, both can be
180# used. --njn]
sewardj86e992f2006-01-28 18:39:09 +0000181
182# Check if a 64-bit only build has been requested
183AC_CACHE_CHECK([for a 64-bit only build], vg_cv_only64bit,
184 [AC_ARG_ENABLE(only64bit,
185 [ --enable-only64bit do a 64-bit only build],
186 [vg_cv_only64bit=$enableval],
187 [vg_cv_only64bit=no])])
188
189# Check if a 32-bit only build has been requested
190AC_CACHE_CHECK([for a 32-bit only build], vg_cv_only32bit,
191 [AC_ARG_ENABLE(only32bit,
192 [ --enable-only32bit do a 32-bit only build],
193 [vg_cv_only32bit=$enableval],
194 [vg_cv_only32bit=no])])
195
196# Stay sane
197if test x$vg_cv_only64bit = xyes -a x$vg_cv_only32bit = xyes; then
198 AC_MSG_ERROR(
199 [Nonsensical: both --enable-only64bit and --enable-only32bit.])
200fi
201
njn7fd6d382009-01-22 21:56:32 +0000202#----------------------------------------------------------------------------
sewardj86e992f2006-01-28 18:39:09 +0000203
njn311303f2009-02-06 03:46:50 +0000204# VGCONF_OS is the primary build OS, eg. "linux". It is passed in to
205# compilation of many C files via -VGO_$(VGCONF_OS) and
206# -VGP_$(VGCONF_ARCH_PRI)_$(VGCONF_OS).
sewardjde4a1d02002-03-22 01:27:54 +0000207AC_MSG_CHECKING([for a supported OS])
njn7fd6d382009-01-22 21:56:32 +0000208AC_SUBST(VGCONF_OS)
sewardjde4a1d02002-03-22 01:27:54 +0000209
njnf76d27a2009-05-28 01:53:07 +0000210DEFAULT_SUPP=""
211
gobrye721a522002-03-22 13:38:30 +0000212case "${host_os}" in
mueller8c68e042004-01-03 15:21:14 +0000213 *linux*)
sewardjde4a1d02002-03-22 01:27:54 +0000214 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000215 VGCONF_OS="linux"
mueller8c68e042004-01-03 15:21:14 +0000216
217 # Ok, this is linux. Check the kernel version
218 AC_MSG_CHECKING([for the kernel version])
219
220 kernel=`uname -r`
221
222 case "${kernel}" in
223 2.6.*)
224 AC_MSG_RESULT([2.6 family (${kernel})])
225 AC_DEFINE([KERNEL_2_6], 1, [Define to 1 if you're using Linux 2.6.x])
226 ;;
227
228 2.4.*)
229 AC_MSG_RESULT([2.4 family (${kernel})])
230 AC_DEFINE([KERNEL_2_4], 1, [Define to 1 if you're using Linux 2.4.x])
231 ;;
232
mueller8c68e042004-01-03 15:21:14 +0000233 *)
234 AC_MSG_RESULT([unsupported (${kernel})])
nethercote4fa681f2004-11-08 17:51:39 +0000235 AC_MSG_ERROR([Valgrind works on kernels 2.4, 2.6])
mueller8c68e042004-01-03 15:21:14 +0000236 ;;
237 esac
238
239 ;;
240
sewardj03d86f22006-10-17 00:57:24 +0000241 aix5.1.*)
242 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000243 VGCONF_OS="aix5"
sewardj03d86f22006-10-17 00:57:24 +0000244 ;;
245 aix5.2.*)
246 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000247 VGCONF_OS="aix5"
sewardj03d86f22006-10-17 00:57:24 +0000248 ;;
249 aix5.3.*)
250 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000251 VGCONF_OS="aix5"
sewardj03d86f22006-10-17 00:57:24 +0000252 ;;
253
njnf76d27a2009-05-28 01:53:07 +0000254 *darwin*)
255 AC_MSG_RESULT([ok (${host_os})])
256 VGCONF_OS="darwin"
njnea2d6fd2010-07-01 00:20:20 +0000257 AC_DEFINE([DARWIN_10_5], 100500, [DARWIN_VERS value for Mac OS X 10.5])
258 AC_DEFINE([DARWIN_10_6], 100600, [DARWIN_VERS value for Mac OS X 10.6])
259 AC_DEFINE([DARWIN_10_7], 100700, [DARWIN_VERS value for Mac OS X 10.7])
njnf76d27a2009-05-28 01:53:07 +0000260
261 AC_MSG_CHECKING([for the kernel version])
262 kernel=`uname -r`
263
264 # Nb: for Darwin we set DEFAULT_SUPP here. That's because Darwin
265 # has only one relevant version, the OS version. The `uname` check
266 # is a good way to get that version (i.e. "Darwin 9.6.0" is Mac OS
njnea2d6fd2010-07-01 00:20:20 +0000267 # X 10.5.6, and "Darwin 10.x" is Mac OS X 10.6.x Snow Leopard),
268 # and we don't know of an macros similar to __GLIBC__ to get that info.
njnf76d27a2009-05-28 01:53:07 +0000269 #
270 # XXX: `uname -r` won't do the right thing for cross-compiles, but
271 # that's not a problem yet.
272 case "${kernel}" in
273 9.*)
274 AC_MSG_RESULT([Darwin 9.x (${kernel}) / Mac OS X 10.5 Leopard])
njnea2d6fd2010-07-01 00:20:20 +0000275 AC_DEFINE([DARWIN_VERS], DARWIN_10_5, [Darwin / Mac OS X version])
njnf76d27a2009-05-28 01:53:07 +0000276 DEFAULT_SUPP="darwin9.supp ${DEFAULT_SUPP}"
bart6ccda142009-07-23 07:37:32 +0000277 DEFAULT_SUPP="darwin9-drd.supp ${DEFAULT_SUPP}"
njnf76d27a2009-05-28 01:53:07 +0000278 ;;
njnea2d6fd2010-07-01 00:20:20 +0000279 10.*)
280 AC_MSG_RESULT([Darwin 10.x (${kernel}) / Mac OS X 10.6 Snow Leopard])
281 AC_DEFINE([DARWIN_VERS], DARWIN_10_6, [Darwin / Mac OS X version])
282 DEFAULT_SUPP="darwin10.supp ${DEFAULT_SUPP}"
283 DEFAULT_SUPP="darwin10-drd.supp ${DEFAULT_SUPP}"
284 ;;
njnf76d27a2009-05-28 01:53:07 +0000285 *)
286 AC_MSG_RESULT([unsupported (${kernel})])
njnea2d6fd2010-07-01 00:20:20 +0000287 AC_MSG_ERROR([Valgrind works on Darwin 9.x and 10.x (Mac OS X 10.5 and 10.6)])
njnf76d27a2009-05-28 01:53:07 +0000288 ;;
289 esac
290 ;;
291
sewardjde4a1d02002-03-22 01:27:54 +0000292 *)
293 AC_MSG_RESULT([no (${host_os})])
njncc58cea2010-07-05 07:21:22 +0000294 AC_MSG_ERROR([Valgrind is operating system specific. Sorry.])
sewardjde4a1d02002-03-22 01:27:54 +0000295 ;;
296esac
297
njn7fd6d382009-01-22 21:56:32 +0000298#----------------------------------------------------------------------------
299
tomd6398392006-06-07 17:44:36 +0000300# If we are building on a 64 bit platform test to see if the system
301# supports building 32 bit programs and disable 32 bit support if it
302# does not support building 32 bit programs
303
njn7fd6d382009-01-22 21:56:32 +0000304case "$ARCH_MAX-$VGCONF_OS" in
tomd6398392006-06-07 17:44:36 +0000305 amd64-linux|ppc64-linux)
306 AC_MSG_CHECKING([for 32 bit build support])
307 safe_CFLAGS=$CFLAGS
308 CFLAGS="-m32"
309 AC_TRY_LINK(, [
njn9890ee12009-01-21 22:25:50 +0000310 return 0;
tomd6398392006-06-07 17:44:36 +0000311 ],
312 [
313 AC_MSG_RESULT([yes])
314 ], [
315 vg_cv_only64bit="yes"
316 AC_MSG_RESULT([no])
317 ])
318 CFLAGS=$safe_CFLAGS;;
319esac
320
321if test x$vg_cv_only64bit = xyes -a x$vg_cv_only32bit = xyes; then
322 AC_MSG_ERROR(
323 [--enable-only32bit was specified but system does not support 32 bit builds])
324fi
nethercote888ecb72004-08-23 14:54:40 +0000325
njn7fd6d382009-01-22 21:56:32 +0000326#----------------------------------------------------------------------------
327
njn311303f2009-02-06 03:46:50 +0000328# VGCONF_ARCH_PRI is the arch for the primary build target, eg. "amd64". By
329# default it's the same as ARCH_MAX. But if, say, we do a build on an amd64
330# machine, but --enable-only32bit has been requested, then ARCH_MAX (see
331# above) will be "amd64" since that reflects the most that this cpu can do,
332# but VGCONF_ARCH_PRI will be downgraded to "x86", since that reflects the
333# arch corresponding to the primary build (VGCONF_PLATFORM_PRI_CAPS). It is
njn7fd6d382009-01-22 21:56:32 +0000334# passed in to compilation of many C files via -VGA_$(VGCONF_ARCH_PRI) and
335# -VGP_$(VGCONF_ARCH_PRI)_$(VGCONF_OS).
336AC_SUBST(VGCONF_ARCH_PRI)
337
njn3f8a6e92009-06-02 00:20:47 +0000338# VGCONF_ARCH_SEC is the arch for the secondary build target, eg. "x86".
339# It is passed in to compilation of many C files via -VGA_$(VGCONF_ARCH_SEC)
340# and -VGP_$(VGCONF_ARCH_SEC)_$(VGCONF_OS), if there is a secondary target.
341# It is empty if there is no secondary target.
342AC_SUBST(VGCONF_ARCH_SEC)
343
njn311303f2009-02-06 03:46:50 +0000344# VGCONF_PLATFORM_PRI_CAPS is the primary build target, eg. "AMD64_LINUX".
345# The entire system, including regression and performance tests, will be
346# built for this target. The "_CAPS" indicates that the name is in capital
347# letters, and it also uses '_' rather than '-' as a separator, because it's
njn7fd6d382009-01-22 21:56:32 +0000348# used to create various Makefile variables, which are all in caps by
njn311303f2009-02-06 03:46:50 +0000349# convention and cannot contain '-' characters. This is in contrast to
350# VGCONF_ARCH_PRI and VGCONF_OS which are not in caps.
njn7fd6d382009-01-22 21:56:32 +0000351AC_SUBST(VGCONF_PLATFORM_PRI_CAPS)
352
353# VGCONF_PLATFORM_SEC_CAPS is the secondary build target, if there is one.
354# Valgrind and tools will also be built for this target, but not the
355# regression or performance tests.
sewardj01262142006-01-04 01:20:28 +0000356#
njn7fd6d382009-01-22 21:56:32 +0000357# By default, the primary arch is the same as the "max" arch, as commented
358# above (at the definition of ARCH_MAX). We may choose to downgrade it in
359# the big case statement just below here, in the case where we're building
360# on a 64 bit machine but have been requested only to do a 32 bit build.
361AC_SUBST(VGCONF_PLATFORM_SEC_CAPS)
362
sewardj01262142006-01-04 01:20:28 +0000363AC_MSG_CHECKING([for a supported CPU/OS combination])
nethercote888ecb72004-08-23 14:54:40 +0000364
njnea2d6fd2010-07-01 00:20:20 +0000365# NB. The load address for a given platform may be specified in more
366# than one place, in some cases, depending on whether we're doing a biarch,
367# 32-bit only or 64-bit only build. eg see case for amd64-linux below.
368# Be careful to give consistent values in all subcases. Also, all four
369# valt_load_addres_{pri,sec}_{norml,inner} values must always be set,
370# even if it is to "0xUNSET".
371#
njn7fd6d382009-01-22 21:56:32 +0000372case "$ARCH_MAX-$VGCONF_OS" in
sewardj01262142006-01-04 01:20:28 +0000373 x86-linux)
njn7fd6d382009-01-22 21:56:32 +0000374 VGCONF_ARCH_PRI="x86"
njn3f8a6e92009-06-02 00:20:47 +0000375 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000376 VGCONF_PLATFORM_PRI_CAPS="X86_LINUX"
377 VGCONF_PLATFORM_SEC_CAPS=""
njnea2d6fd2010-07-01 00:20:20 +0000378 valt_load_address_pri_norml="0x38000000"
379 valt_load_address_pri_inner="0x28000000"
380 valt_load_address_sec_norml="0xUNSET"
381 valt_load_address_sec_inner="0xUNSET"
njn377c43f2009-05-19 07:39:22 +0000382 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000383 ;;
384 amd64-linux)
njnea2d6fd2010-07-01 00:20:20 +0000385 valt_load_address_sec_norml="0xUNSET"
386 valt_load_address_sec_inner="0xUNSET"
sewardj86e992f2006-01-28 18:39:09 +0000387 if test x$vg_cv_only64bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000388 VGCONF_ARCH_PRI="amd64"
njn3f8a6e92009-06-02 00:20:47 +0000389 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000390 VGCONF_PLATFORM_PRI_CAPS="AMD64_LINUX"
391 VGCONF_PLATFORM_SEC_CAPS=""
njnea2d6fd2010-07-01 00:20:20 +0000392 valt_load_address_pri_norml="0x38000000"
393 valt_load_address_pri_inner="0x28000000"
sewardj86e992f2006-01-28 18:39:09 +0000394 elif test x$vg_cv_only32bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000395 VGCONF_ARCH_PRI="x86"
njn3f8a6e92009-06-02 00:20:47 +0000396 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000397 VGCONF_PLATFORM_PRI_CAPS="X86_LINUX"
398 VGCONF_PLATFORM_SEC_CAPS=""
njnea2d6fd2010-07-01 00:20:20 +0000399 valt_load_address_pri_norml="0x38000000"
400 valt_load_address_pri_inner="0x28000000"
sewardj86e992f2006-01-28 18:39:09 +0000401 else
njn7fd6d382009-01-22 21:56:32 +0000402 VGCONF_ARCH_PRI="amd64"
njn3f8a6e92009-06-02 00:20:47 +0000403 VGCONF_ARCH_SEC="x86"
njn7fd6d382009-01-22 21:56:32 +0000404 VGCONF_PLATFORM_PRI_CAPS="AMD64_LINUX"
405 VGCONF_PLATFORM_SEC_CAPS="X86_LINUX"
njnea2d6fd2010-07-01 00:20:20 +0000406 valt_load_address_pri_norml="0x38000000"
407 valt_load_address_pri_inner="0x28000000"
408 valt_load_address_sec_norml="0x38000000"
409 valt_load_address_sec_inner="0x28000000"
sewardj86e992f2006-01-28 18:39:09 +0000410 fi
njn377c43f2009-05-19 07:39:22 +0000411 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000412 ;;
413 ppc32-linux)
njn7fd6d382009-01-22 21:56:32 +0000414 VGCONF_ARCH_PRI="ppc32"
njn3f8a6e92009-06-02 00:20:47 +0000415 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000416 VGCONF_PLATFORM_PRI_CAPS="PPC32_LINUX"
417 VGCONF_PLATFORM_SEC_CAPS=""
njnea2d6fd2010-07-01 00:20:20 +0000418 valt_load_address_pri_norml="0x38000000"
419 valt_load_address_pri_inner="0x28000000"
420 valt_load_address_sec_norml="0xUNSET"
421 valt_load_address_sec_inner="0xUNSET"
njn377c43f2009-05-19 07:39:22 +0000422 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000423 ;;
sewardj03d86f22006-10-17 00:57:24 +0000424 ppc64-aix5)
njnea2d6fd2010-07-01 00:20:20 +0000425 valt_load_address_pri_norml="0xUNSET"
426 valt_load_address_pri_inner="0xUNSET"
427 valt_load_address_sec_norml="0xUNSET"
428 valt_load_address_sec_inner="0xUNSET"
sewardj03d86f22006-10-17 00:57:24 +0000429 if test x$vg_cv_only64bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000430 VGCONF_ARCH_PRI="ppc64"
njn3f8a6e92009-06-02 00:20:47 +0000431 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000432 VGCONF_PLATFORM_PRI_CAPS="PPC64_AIX5"
433 VGCONF_PLATFORM_SEC_CAPS=""
sewardj03d86f22006-10-17 00:57:24 +0000434 elif test x$vg_cv_only32bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000435 VGCONF_ARCH_PRI="ppc32"
njn3f8a6e92009-06-02 00:20:47 +0000436 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000437 VGCONF_PLATFORM_PRI_CAPS="PPC32_AIX5"
438 VGCONF_PLATFORM_SEC_CAPS=""
sewardj03d86f22006-10-17 00:57:24 +0000439 else
njn7fd6d382009-01-22 21:56:32 +0000440 VGCONF_ARCH_PRI="ppc64"
njn3f8a6e92009-06-02 00:20:47 +0000441 VGCONF_ARCH_SEC="ppc32"
njn7fd6d382009-01-22 21:56:32 +0000442 VGCONF_PLATFORM_PRI_CAPS="PPC64_AIX5"
443 VGCONF_PLATFORM_SEC_CAPS="PPC32_AIX5"
sewardj03d86f22006-10-17 00:57:24 +0000444 fi
njn377c43f2009-05-19 07:39:22 +0000445 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj03d86f22006-10-17 00:57:24 +0000446 ;;
sewardj01262142006-01-04 01:20:28 +0000447 ppc64-linux)
njnea2d6fd2010-07-01 00:20:20 +0000448 valt_load_address_sec_norml="0xUNSET"
449 valt_load_address_sec_inner="0xUNSET"
sewardj86e992f2006-01-28 18:39:09 +0000450 if test x$vg_cv_only64bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000451 VGCONF_ARCH_PRI="ppc64"
njn3f8a6e92009-06-02 00:20:47 +0000452 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000453 VGCONF_PLATFORM_PRI_CAPS="PPC64_LINUX"
454 VGCONF_PLATFORM_SEC_CAPS=""
njnea2d6fd2010-07-01 00:20:20 +0000455 valt_load_address_pri_norml="0x38000000"
456 valt_load_address_pri_inner="0x28000000"
sewardj86e992f2006-01-28 18:39:09 +0000457 elif test x$vg_cv_only32bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000458 VGCONF_ARCH_PRI="ppc32"
njn3f8a6e92009-06-02 00:20:47 +0000459 VGCONF_ARCH_SEC=""
njn7fd6d382009-01-22 21:56:32 +0000460 VGCONF_PLATFORM_PRI_CAPS="PPC32_LINUX"
461 VGCONF_PLATFORM_SEC_CAPS=""
njnea2d6fd2010-07-01 00:20:20 +0000462 valt_load_address_pri_norml="0x38000000"
463 valt_load_address_pri_inner="0x28000000"
sewardj86e992f2006-01-28 18:39:09 +0000464 else
njn7fd6d382009-01-22 21:56:32 +0000465 VGCONF_ARCH_PRI="ppc64"
njn3f8a6e92009-06-02 00:20:47 +0000466 VGCONF_ARCH_SEC="ppc32"
njn7fd6d382009-01-22 21:56:32 +0000467 VGCONF_PLATFORM_PRI_CAPS="PPC64_LINUX"
468 VGCONF_PLATFORM_SEC_CAPS="PPC32_LINUX"
njnea2d6fd2010-07-01 00:20:20 +0000469 valt_load_address_pri_norml="0x38000000"
470 valt_load_address_pri_inner="0x28000000"
471 valt_load_address_sec_norml="0x38000000"
472 valt_load_address_sec_inner="0x28000000"
sewardj86e992f2006-01-28 18:39:09 +0000473 fi
njn377c43f2009-05-19 07:39:22 +0000474 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000475 ;;
njncc58cea2010-07-05 07:21:22 +0000476 # Darwin gets identified as 32-bit even when it supports 64-bit.
477 # (Not sure why, possibly because 'uname' returns "i386"?) Just about
478 # all Macs support both 32-bit and 64-bit, so we just build both. If
479 # someone has a really old 32-bit only machine they can (hopefully?)
480 # build with --enable-only32bit. See bug 243362.
481 x86-darwin|amd64-darwin)
482 ARCH_MAX="amd64"
njnea2d6fd2010-07-01 00:20:20 +0000483 valt_load_address_sec_norml="0xUNSET"
484 valt_load_address_sec_inner="0xUNSET"
njnf76d27a2009-05-28 01:53:07 +0000485 if test x$vg_cv_only64bit = xyes; then
486 VGCONF_ARCH_PRI="amd64"
njn3f8a6e92009-06-02 00:20:47 +0000487 VGCONF_ARCH_SEC=""
njnf76d27a2009-05-28 01:53:07 +0000488 VGCONF_PLATFORM_PRI_CAPS="AMD64_DARWIN"
489 VGCONF_PLATFORM_SEC_CAPS=""
njnea2d6fd2010-07-01 00:20:20 +0000490 valt_load_address_pri_norml="0x138000000"
491 valt_load_address_pri_inner="0x128000000"
njnf76d27a2009-05-28 01:53:07 +0000492 elif test x$vg_cv_only32bit = xyes; then
493 VGCONF_ARCH_PRI="x86"
njn3f8a6e92009-06-02 00:20:47 +0000494 VGCONF_ARCH_SEC=""
njnf76d27a2009-05-28 01:53:07 +0000495 VGCONF_PLATFORM_PRI_CAPS="X86_DARWIN"
496 VGCONF_PLATFORM_SEC_CAPS=""
497 VGCONF_ARCH_PRI_CAPS="x86"
njnea2d6fd2010-07-01 00:20:20 +0000498 valt_load_address_pri_norml="0x38000000"
499 valt_load_address_pri_inner="0x28000000"
njnf76d27a2009-05-28 01:53:07 +0000500 else
501 VGCONF_ARCH_PRI="amd64"
njn3f8a6e92009-06-02 00:20:47 +0000502 VGCONF_ARCH_SEC="x86"
njnf76d27a2009-05-28 01:53:07 +0000503 VGCONF_PLATFORM_PRI_CAPS="AMD64_DARWIN"
504 VGCONF_PLATFORM_SEC_CAPS="X86_DARWIN"
njnea2d6fd2010-07-01 00:20:20 +0000505 valt_load_address_pri_norml="0x138000000"
506 valt_load_address_pri_inner="0x128000000"
507 valt_load_address_sec_norml="0x38000000"
508 valt_load_address_sec_inner="0x28000000"
njnf76d27a2009-05-28 01:53:07 +0000509 fi
njnf76d27a2009-05-28 01:53:07 +0000510 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
511 ;;
sewardj59570ff2010-01-01 11:59:33 +0000512 arm-linux)
513 VGCONF_ARCH_PRI="arm"
514 VGCONF_PLATFORM_PRI_CAPS="ARM_LINUX"
515 VGCONF_PLATFORM_SEC_CAPS=""
njnea2d6fd2010-07-01 00:20:20 +0000516 valt_load_address_pri_norml="0x38000000"
517 valt_load_address_pri_inner="0x28000000"
518 valt_load_address_sec_norml="0xUNSET"
519 valt_load_address_sec_inner="0xUNSET"
sewardj59570ff2010-01-01 11:59:33 +0000520 AC_MSG_RESULT([ok (${host_cpu}-${host_os})])
521 ;;
nethercote888ecb72004-08-23 14:54:40 +0000522 *)
njn7fd6d382009-01-22 21:56:32 +0000523 VGCONF_ARCH_PRI="unknown"
njn3f8a6e92009-06-02 00:20:47 +0000524 VGCONF_ARCH_SEC="unknown"
njn7fd6d382009-01-22 21:56:32 +0000525 VGCONF_PLATFORM_PRI_CAPS="UNKNOWN"
526 VGCONF_PLATFORM_SEC_CAPS="UNKNOWN"
njnea2d6fd2010-07-01 00:20:20 +0000527 valt_load_address_pri_norml="0xUNSET"
528 valt_load_address_pri_inner="0xUNSET"
529 valt_load_address_sec_norml="0xUNSET"
530 valt_load_address_sec_inner="0xUNSET"
njn377c43f2009-05-19 07:39:22 +0000531 AC_MSG_RESULT([no (${ARCH_MAX}-${VGCONF_OS})])
sewardj3e38ce02004-11-23 01:17:29 +0000532 AC_MSG_ERROR([Valgrind is platform specific. Sorry. Please consider doing a port.])
nethercote888ecb72004-08-23 14:54:40 +0000533 ;;
534esac
sewardjde4a1d02002-03-22 01:27:54 +0000535
njn7fd6d382009-01-22 21:56:32 +0000536#----------------------------------------------------------------------------
njna454ec02009-01-19 03:16:59 +0000537
njn7fd6d382009-01-22 21:56:32 +0000538# Set up VGCONF_ARCHS_INCLUDE_<arch>. Either one or two of these become
539# defined.
540AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_X86,
541 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
njnf76d27a2009-05-28 01:53:07 +0000542 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX \
543 -o x$VGCONF_PLATFORM_PRI_CAPS = xX86_DARWIN \
544 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_DARWIN )
njn7fd6d382009-01-22 21:56:32 +0000545AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_AMD64,
njnf76d27a2009-05-28 01:53:07 +0000546 test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \
547 -o x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_DARWIN )
njn7fd6d382009-01-22 21:56:32 +0000548AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_PPC32,
549 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX \
550 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX \
551 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
552 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5 )
553AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_PPC64,
554 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX \
555 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 )
sewardj59570ff2010-01-01 11:59:33 +0000556AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_ARM,
557 test x$VGCONF_PLATFORM_PRI_CAPS = xARM_LINUX )
sewardj03d86f22006-10-17 00:57:24 +0000558
njn7fd6d382009-01-22 21:56:32 +0000559# Set up VGCONF_PLATFORMS_INCLUDE_<platform>. Either one or two of these
560# become defined.
561AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_X86_LINUX,
562 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
563 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX)
564AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_AMD64_LINUX,
565 test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX)
566AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC32_LINUX,
567 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX \
568 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX)
569AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC64_LINUX,
570 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX)
sewardj59570ff2010-01-01 11:59:33 +0000571AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_ARM_LINUX,
572 test x$VGCONF_PLATFORM_PRI_CAPS = xARM_LINUX)
njnf76d27a2009-05-28 01:53:07 +0000573
njn7fd6d382009-01-22 21:56:32 +0000574AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC32_AIX5,
575 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
576 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5)
577AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC64_AIX5,
578 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5)
579
njnf76d27a2009-05-28 01:53:07 +0000580AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_X86_DARWIN,
581 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_DARWIN \
582 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_DARWIN)
583AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_AMD64_DARWIN,
584 test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_DARWIN)
585
586
sewardj72a2d802010-07-29 05:24:20 +0000587# Similarly, set up VGCONF_OS_IS_<os>. Exactly one of these becomes defined.
sewardj03d86f22006-10-17 00:57:24 +0000588# Relies on the assumption that the primary and secondary targets are
589# for the same OS, so therefore only necessary to test the primary.
njn7fd6d382009-01-22 21:56:32 +0000590AM_CONDITIONAL(VGCONF_OS_IS_LINUX,
591 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
592 -o x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \
593 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX \
sewardj59570ff2010-01-01 11:59:33 +0000594 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX \
595 -o x$VGCONF_PLATFORM_PRI_CAPS = xARM_LINUX )
njn7fd6d382009-01-22 21:56:32 +0000596AM_CONDITIONAL(VGCONF_OS_IS_AIX5,
597 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
598 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5)
njnf76d27a2009-05-28 01:53:07 +0000599AM_CONDITIONAL(VGCONF_OS_IS_DARWIN,
600 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_DARWIN \
601 -o x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_DARWIN)
sewardj03d86f22006-10-17 00:57:24 +0000602
603
njn7fd6d382009-01-22 21:56:32 +0000604# Sometimes, in the Makefile.am files, it's useful to know whether or not
605# there is a secondary target.
njnee0c66a2009-06-01 23:59:20 +0000606AM_CONDITIONAL(VGCONF_HAVE_PLATFORM_SEC,
njn7fd6d382009-01-22 21:56:32 +0000607 test x$VGCONF_PLATFORM_SEC_CAPS != x)
tomfb7bcde2005-11-07 15:24:38 +0000608
tomb637bad2005-11-08 12:28:35 +0000609
njn7fd6d382009-01-22 21:56:32 +0000610#----------------------------------------------------------------------------
611# Inner Valgrind?
612#----------------------------------------------------------------------------
613
njnd74b0ef2009-01-20 06:06:52 +0000614# Check if this should be built as an inner Valgrind, to be run within
615# another Valgrind. Choose the load address accordingly.
njnea2d6fd2010-07-01 00:20:20 +0000616AC_SUBST(VALT_LOAD_ADDRESS_PRI)
617AC_SUBST(VALT_LOAD_ADDRESS_SEC)
njnd74b0ef2009-01-20 06:06:52 +0000618AC_CACHE_CHECK([for use as an inner Valgrind], vg_cv_inner,
619 [AC_ARG_ENABLE(inner,
620 [ --enable-inner enables self-hosting],
621 [vg_cv_inner=$enableval],
622 [vg_cv_inner=no])])
623if test "$vg_cv_inner" = yes; then
624 AC_DEFINE([ENABLE_INNER], 1, [configured to run as an inner Valgrind])
njnea2d6fd2010-07-01 00:20:20 +0000625 VALT_LOAD_ADDRESS_PRI=$valt_load_address_pri_inner
626 VALT_LOAD_ADDRESS_SEC=$valt_load_address_sec_inner
njnd74b0ef2009-01-20 06:06:52 +0000627else
njnea2d6fd2010-07-01 00:20:20 +0000628 VALT_LOAD_ADDRESS_PRI=$valt_load_address_pri_norml
629 VALT_LOAD_ADDRESS_SEC=$valt_load_address_sec_norml
njnd74b0ef2009-01-20 06:06:52 +0000630fi
631
632
njn7fd6d382009-01-22 21:56:32 +0000633#----------------------------------------------------------------------------
634# Libc and suppressions
635#----------------------------------------------------------------------------
636# This variable will collect the suppression files to be used.
njn7fd6d382009-01-22 21:56:32 +0000637AC_SUBST(DEFAULT_SUPP)
sewardj01262142006-01-04 01:20:28 +0000638
bart12e91122010-05-15 08:37:24 +0000639AC_CHECK_HEADER([features.h])
sewardjde4a1d02002-03-22 01:27:54 +0000640
bart12e91122010-05-15 08:37:24 +0000641if test x$ac_cv_header_features_h = xyes; then
642 rm -f conftest.$ac_ext
643 cat <<_ACEOF >conftest.$ac_ext
sewardjde4a1d02002-03-22 01:27:54 +0000644#include <features.h>
bart12e91122010-05-15 08:37:24 +0000645#if defined(__GNU_LIBRARY__) && defined(__GLIBC__) && defined(__GLIBC_MINOR__)
646glibc version is: __GLIBC__ __GLIBC_MINOR__
sewardjde4a1d02002-03-22 01:27:54 +0000647#endif
bart12e91122010-05-15 08:37:24 +0000648_ACEOF
649 GLIBC_VERSION="`$CPP conftest.$ac_ext | $SED -n 's/^glibc version is: //p' | $SED 's/ /./g'`"
650fi
bartb7c3f082010-05-13 06:32:36 +0000651
sewardj03d86f22006-10-17 00:57:24 +0000652AC_EGREP_CPP([AIX5_LIBC], [
653#include <standards.h>
654#if defined(_AIXVERSION_510) || defined(_AIXVERSION_520) || defined(_AIXVERSION_530)
655 AIX5_LIBC
656#endif
657],
dirk07596a22008-04-25 11:33:30 +0000658GLIBC_VERSION="aix5")
daywalkere9212b32003-06-15 22:39:15 +0000659
njnf76d27a2009-05-28 01:53:07 +0000660# not really a version check
661AC_EGREP_CPP([DARWIN_LIBC], [
662#include <sys/cdefs.h>
663#if defined(__DARWIN_VERS_1050)
664 DARWIN_LIBC
665#endif
666],
667GLIBC_VERSION="darwin")
668
dirk07596a22008-04-25 11:33:30 +0000669AC_MSG_CHECKING([the GLIBC_VERSION version])
sewardj03d86f22006-10-17 00:57:24 +0000670
dirk07596a22008-04-25 11:33:30 +0000671case "${GLIBC_VERSION}" in
sewardjde4a1d02002-03-22 01:27:54 +0000672 2.2)
673 AC_MSG_RESULT(2.2 family)
daywalker418c7482002-10-16 13:09:26 +0000674 AC_DEFINE([GLIBC_2_2], 1, [Define to 1 if you're using glibc 2.2.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000675 DEFAULT_SUPP="glibc-2.2.supp ${DEFAULT_SUPP}"
676 DEFAULT_SUPP="glibc-2.2-LinuxThreads-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000677 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardjde4a1d02002-03-22 01:27:54 +0000678 ;;
679
sewardj08c7f012002-10-07 23:56:55 +0000680 2.3)
681 AC_MSG_RESULT(2.3 family)
daywalker418c7482002-10-16 13:09:26 +0000682 AC_DEFINE([GLIBC_2_3], 1, [Define to 1 if you're using glibc 2.3.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000683 DEFAULT_SUPP="glibc-2.3.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000684 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000685 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardj08c7f012002-10-07 23:56:55 +0000686 ;;
687
njn781dba52005-06-30 04:06:38 +0000688 2.4)
689 AC_MSG_RESULT(2.4 family)
690 AC_DEFINE([GLIBC_2_4], 1, [Define to 1 if you're using glibc 2.4.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000691 DEFAULT_SUPP="glibc-2.4.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000692 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000693 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
njn781dba52005-06-30 04:06:38 +0000694 ;;
695
dirkaece45c2006-10-12 08:17:49 +0000696 2.5)
697 AC_MSG_RESULT(2.5 family)
698 AC_DEFINE([GLIBC_2_5], 1, [Define to 1 if you're using glibc 2.5.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000699 DEFAULT_SUPP="glibc-2.5.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000700 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000701 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
dirkaece45c2006-10-12 08:17:49 +0000702 ;;
dirkc8bd0c52007-05-23 17:39:08 +0000703 2.6)
704 AC_MSG_RESULT(2.6 family)
705 AC_DEFINE([GLIBC_2_6], 1, [Define to 1 if you're using glibc 2.6.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000706 DEFAULT_SUPP="glibc-2.6.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000707 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000708 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000709 ;;
710 2.7)
711 AC_MSG_RESULT(2.7 family)
712 AC_DEFINE([GLIBC_2_7], 1, [Define to 1 if you're using glibc 2.7.x])
dirk07596a22008-04-25 11:33:30 +0000713 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000714 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000715 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
dirkc8bd0c52007-05-23 17:39:08 +0000716 ;;
dirk07596a22008-04-25 11:33:30 +0000717 2.8)
718 AC_MSG_RESULT(2.8 family)
dirkeb939fc2008-04-27 20:38:47 +0000719 AC_DEFINE([GLIBC_2_8], 1, [Define to 1 if you're using glibc 2.8.x])
dirk07596a22008-04-25 11:33:30 +0000720 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
721 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
722 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
723 ;;
dirkd2e31eb2008-11-19 23:58:36 +0000724 2.9)
725 AC_MSG_RESULT(2.9 family)
726 AC_DEFINE([GLIBC_2_9], 1, [Define to 1 if you're using glibc 2.9.x])
727 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
728 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
729 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
730 ;;
sewardj5d425e82009-02-01 19:01:11 +0000731 2.10)
732 AC_MSG_RESULT(2.10 family)
733 AC_DEFINE([GLIBC_2_10], 1, [Define to 1 if you're using glibc 2.10.x])
734 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
735 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
736 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
737 ;;
bart0fac7ff2009-11-15 19:11:19 +0000738 2.11)
739 AC_MSG_RESULT(2.11 family)
740 AC_DEFINE([GLIBC_2_11], 1, [Define to 1 if you're using glibc 2.11.x])
741 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
742 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
743 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
bartb7c3f082010-05-13 06:32:36 +0000744 ;;
745 2.12)
746 AC_MSG_RESULT(2.12 family)
747 AC_DEFINE([GLIBC_2_12], 1, [Define to 1 if you're using glibc 2.12.x])
748 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
749 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
750 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
bart0fac7ff2009-11-15 19:11:19 +0000751 ;;
sewardj03d86f22006-10-17 00:57:24 +0000752 aix5)
sewardj2f3bcd22006-12-12 01:38:15 +0000753 AC_MSG_RESULT(AIX 5.1 or 5.2 or 5.3)
754 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 +0000755 DEFAULT_SUPP="aix5libc.supp ${DEFAULT_SUPP}"
756 ;;
njnf76d27a2009-05-28 01:53:07 +0000757 darwin)
758 AC_MSG_RESULT(Darwin)
759 AC_DEFINE([DARWIN_LIBC], 1, [Define to 1 if you're using Darwin])
760 # DEFAULT_SUPP set by kernel version check above.
761 ;;
dirkaece45c2006-10-12 08:17:49 +0000762
sewardjde4a1d02002-03-22 01:27:54 +0000763 *)
bart12e91122010-05-15 08:37:24 +0000764 AC_MSG_RESULT([unsupported version ${GLIBC_VERSION}])
bartb7c3f082010-05-13 06:32:36 +0000765 AC_MSG_ERROR([Valgrind requires glibc version 2.2 - 2.12])
dirk07596a22008-04-25 11:33:30 +0000766 AC_MSG_ERROR([or AIX 5.1 or 5.2 or 5.3 GLIBC_VERSION])
njnf76d27a2009-05-28 01:53:07 +0000767 AC_MSG_ERROR([or Darwin libc])
sewardjde4a1d02002-03-22 01:27:54 +0000768 ;;
769esac
770
dirk07596a22008-04-25 11:33:30 +0000771AC_SUBST(GLIBC_VERSION)
sewardj535c50f2005-06-04 23:14:53 +0000772
sewardj414f3582008-07-18 20:46:00 +0000773
774# Add default suppressions for the X client libraries. Make no
775# attempt to detect whether such libraries are installed on the
776# build machine (or even if any X facilities are present); just
777# add the suppressions antidisirregardless.
778DEFAULT_SUPP="xfree-4.supp ${DEFAULT_SUPP}"
779DEFAULT_SUPP="xfree-3.supp ${DEFAULT_SUPP}"
gobrye721a522002-03-22 13:38:30 +0000780
sewardj5744c022008-10-19 18:58:13 +0000781# Add glibc and X11 suppressions for exp-ptrcheck
782DEFAULT_SUPP="exp-ptrcheck.supp ${DEFAULT_SUPP}"
783
sewardj2e10a682003-04-07 19:36:41 +0000784
njn7fd6d382009-01-22 21:56:32 +0000785#----------------------------------------------------------------------------
786# Checking for various library functions and other definitions
787#----------------------------------------------------------------------------
788
bart59e2f182008-04-28 16:22:53 +0000789# Check for CLOCK_MONOTONIC
790
791AC_MSG_CHECKING([for CLOCK_MONOTONIC])
792
793AC_TRY_COMPILE(
794[
795#include <time.h>
796], [
797 struct timespec t;
798 clock_gettime(CLOCK_MONOTONIC, &t);
799 return 0;
800],
801[
802AC_MSG_RESULT([yes])
803AC_DEFINE([HAVE_CLOCK_MONOTONIC], 1,
804 [Define to 1 if you have the `CLOCK_MONOTONIC' constant.])
805], [
806AC_MSG_RESULT([no])
807])
808
bartfea06922008-05-03 09:12:15 +0000809
810# Check for PTHREAD_MUTEX_ADAPTIVE_NP
811
812AC_MSG_CHECKING([for PTHREAD_MUTEX_ADAPTIVE_NP])
813
814AC_TRY_COMPILE(
815[
816#define _GNU_SOURCE
817#include <pthread.h>
818], [
819 return (PTHREAD_MUTEX_ADAPTIVE_NP);
820],
821[
822AC_MSG_RESULT([yes])
823AC_DEFINE([HAVE_PTHREAD_MUTEX_ADAPTIVE_NP], 1,
824 [Define to 1 if you have the `PTHREAD_MUTEX_ADAPTIVE_NP' constant.])
825], [
826AC_MSG_RESULT([no])
827])
828
829
830# Check for PTHREAD_MUTEX_ERRORCHECK_NP
831
832AC_MSG_CHECKING([for PTHREAD_MUTEX_ERRORCHECK_NP])
833
834AC_TRY_COMPILE(
835[
836#define _GNU_SOURCE
837#include <pthread.h>
838], [
839 return (PTHREAD_MUTEX_ERRORCHECK_NP);
840],
841[
842AC_MSG_RESULT([yes])
843AC_DEFINE([HAVE_PTHREAD_MUTEX_ERRORCHECK_NP], 1,
844 [Define to 1 if you have the `PTHREAD_MUTEX_ERRORCHECK_NP' constant.])
845], [
846AC_MSG_RESULT([no])
847])
848
849
850# Check for PTHREAD_MUTEX_RECURSIVE_NP
851
852AC_MSG_CHECKING([for PTHREAD_MUTEX_RECURSIVE_NP])
853
854AC_TRY_COMPILE(
855[
856#define _GNU_SOURCE
857#include <pthread.h>
858], [
859 return (PTHREAD_MUTEX_RECURSIVE_NP);
860],
861[
862AC_MSG_RESULT([yes])
863AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE_NP], 1,
864 [Define to 1 if you have the `PTHREAD_MUTEX_RECURSIVE_NP' constant.])
865], [
866AC_MSG_RESULT([no])
867])
868
869
870# Check for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
871
872AC_MSG_CHECKING([for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP])
873
874AC_TRY_COMPILE(
875[
876#define _GNU_SOURCE
877#include <pthread.h>
878], [
879 pthread_mutex_t m = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
880 return 0;
881],
882[
883AC_MSG_RESULT([yes])
884AC_DEFINE([HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], 1,
885 [Define to 1 if you have the `PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP' constant.])
886], [
887AC_MSG_RESULT([no])
888])
889
890
bart5e389f12008-04-05 12:53:15 +0000891# Check whether pthread_mutex_t has a member called __m_kind.
892
bartb11355c2010-04-29 16:37:26 +0000893AC_CHECK_MEMBER([pthread_mutex_t.__m_kind],
894 [AC_DEFINE([HAVE_PTHREAD_MUTEX_T__M_KIND],
895 1,
896 [Define to 1 if pthread_mutex_t has a member called __m_kind.])
897 ],
898 [],
899 [#include <pthread.h>])
bart5e389f12008-04-05 12:53:15 +0000900
901
902# Check whether pthread_mutex_t has a member called __data.__kind.
903
bartb11355c2010-04-29 16:37:26 +0000904AC_CHECK_MEMBER([pthread_mutex_t.__data.__kind],
905 [AC_DEFINE([HAVE_PTHREAD_MUTEX_T__DATA__KIND],
906 1,
907 [Define to 1 if pthread_mutex_t has a member __data.__kind.])
908 ],
909 [],
910 [#include <pthread.h>])
bart5e389f12008-04-05 12:53:15 +0000911
912
bart62c370e2008-05-12 18:50:51 +0000913# does this compiler support -maltivec and does it have the include file
914# <altivec.h> ?
915
916AC_MSG_CHECKING([for Altivec])
917
918safe_CFLAGS=$CFLAGS
919CFLAGS="-maltivec"
920
921AC_TRY_COMPILE(
922[
923#include <altivec.h>
924], [
925 vector unsigned int v;
926],
927[
928ac_have_altivec=yes
929AC_MSG_RESULT([yes])
sewardjf9fe6022010-09-03 14:36:50 +0000930AC_DEFINE([HAS_ALTIVEC], 1,
sewardj6467a152010-09-03 14:02:22 +0000931 [Define to 1 if gcc/as can do Altivec.])
bart62c370e2008-05-12 18:50:51 +0000932], [
933ac_have_altivec=no
934AC_MSG_RESULT([no])
935])
936CFLAGS=$safe_CFLAGS
937
sewardj0e342a02010-09-03 23:49:33 +0000938AM_CONDITIONAL([HAS_ALTIVEC], [test x$ac_have_altivec = xyes])
bart62c370e2008-05-12 18:50:51 +0000939
940
bart36dd85a2009-04-26 07:11:48 +0000941# Check for pthread_create@GLIBC2.0
942AC_MSG_CHECKING([for pthread_create@GLIBC2.0()])
943
bart16e1c5a2009-04-26 07:38:53 +0000944safe_CFLAGS=$CFLAGS
945CFLAGS="-lpthread"
bart36dd85a2009-04-26 07:11:48 +0000946AC_TRY_LINK(
947[
948extern int pthread_create_glibc_2_0(void*, const void*,
949 void *(*)(void*), void*);
950__asm__(".symver pthread_create_glibc_2_0, pthread_create@GLIBC_2.0");
951], [
bart276ed3a2009-05-10 15:41:45 +0000952#ifdef __powerpc__
953/*
954 * Apparently on PowerPC linking this program succeeds and generates an
955 * executable with the undefined symbol pthread_create@GLIBC_2.0.
956 */
957#error This test does not work properly on PowerPC.
958#else
bart16e1c5a2009-04-26 07:38:53 +0000959 pthread_create_glibc_2_0(0, 0, 0, 0);
bart276ed3a2009-05-10 15:41:45 +0000960#endif
bart16e1c5a2009-04-26 07:38:53 +0000961 return 0;
bart36dd85a2009-04-26 07:11:48 +0000962],
963[
964ac_have_pthread_create_glibc_2_0=yes
965AC_MSG_RESULT([yes])
966AC_DEFINE([HAVE_PTHREAD_CREATE_GLIBC_2_0], 1,
967 [Define to 1 if you have the `pthread_create@glibc2.0' function.])
968], [
969ac_have_pthread_create_glibc_2_0=no
970AC_MSG_RESULT([no])
971])
bart16e1c5a2009-04-26 07:38:53 +0000972CFLAGS=$safe_CFLAGS
bart36dd85a2009-04-26 07:11:48 +0000973
974AM_CONDITIONAL(HAVE_PTHREAD_CREATE_GLIBC_2_0,
bart24f53902009-04-26 11:29:02 +0000975 test x$ac_have_pthread_create_glibc_2_0 = xyes)
bart36dd85a2009-04-26 07:11:48 +0000976
977
barta50aa8a2008-04-27 06:06:57 +0000978# Check for eventfd_t, eventfd() and eventfd_read()
979AC_MSG_CHECKING([for eventfd()])
980
981AC_TRY_LINK(
982[
983#include <sys/eventfd.h>
984], [
985 eventfd_t ev;
986 int fd;
987
988 fd = eventfd(5, 0);
989 eventfd_read(fd, &ev);
990 return 0;
991],
992[
993AC_MSG_RESULT([yes])
994AC_DEFINE([HAVE_EVENTFD], 1,
995 [Define to 1 if you have the `eventfd' function.])
996AC_DEFINE([HAVE_EVENTFD_READ], 1,
997 [Define to 1 if you have the `eventfd_read' function.])
998], [
999AC_MSG_RESULT([no])
1000])
1001
1002
njn7fd6d382009-01-22 21:56:32 +00001003#----------------------------------------------------------------------------
1004# Checking for supported compiler flags.
1005#----------------------------------------------------------------------------
1006
sewardj535c50f2005-06-04 23:14:53 +00001007# does this compiler support -m32 ?
1008AC_MSG_CHECKING([if gcc accepts -m32])
1009
1010safe_CFLAGS=$CFLAGS
1011CFLAGS="-m32"
1012
1013AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001014 return 0;
sewardj535c50f2005-06-04 23:14:53 +00001015],
1016[
1017FLAG_M32="-m32"
1018AC_MSG_RESULT([yes])
1019], [
1020FLAG_M32=""
1021AC_MSG_RESULT([no])
1022])
1023CFLAGS=$safe_CFLAGS
1024
1025AC_SUBST(FLAG_M32)
1026
1027
sewardj03d86f22006-10-17 00:57:24 +00001028# does this compiler support -maix32 ?
1029AC_MSG_CHECKING([if gcc accepts -maix32])
1030
1031safe_CFLAGS=$CFLAGS
1032CFLAGS="-maix32"
1033
1034AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001035 return 0;
sewardj03d86f22006-10-17 00:57:24 +00001036],
1037[
1038FLAG_MAIX32="-maix32"
1039AC_MSG_RESULT([yes])
1040], [
1041FLAG_MAIX32=""
1042AC_MSG_RESULT([no])
1043])
1044CFLAGS=$safe_CFLAGS
1045
1046AC_SUBST(FLAG_MAIX32)
1047
1048
sewardj01262142006-01-04 01:20:28 +00001049# does this compiler support -m64 ?
1050AC_MSG_CHECKING([if gcc accepts -m64])
1051
1052safe_CFLAGS=$CFLAGS
1053CFLAGS="-m64"
1054
1055AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001056 return 0;
sewardj01262142006-01-04 01:20:28 +00001057],
1058[
1059FLAG_M64="-m64"
1060AC_MSG_RESULT([yes])
1061], [
1062FLAG_M64=""
1063AC_MSG_RESULT([no])
1064])
1065CFLAGS=$safe_CFLAGS
1066
1067AC_SUBST(FLAG_M64)
1068
1069
sewardj03d86f22006-10-17 00:57:24 +00001070# does this compiler support -maix64 ?
1071AC_MSG_CHECKING([if gcc accepts -maix64])
1072
1073safe_CFLAGS=$CFLAGS
1074CFLAGS="-maix64"
1075
1076AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001077 return 0;
sewardj03d86f22006-10-17 00:57:24 +00001078],
1079[
1080FLAG_MAIX64="-maix64"
1081AC_MSG_RESULT([yes])
1082], [
1083FLAG_MAIX64=""
1084AC_MSG_RESULT([no])
1085])
1086CFLAGS=$safe_CFLAGS
1087
1088AC_SUBST(FLAG_MAIX64)
1089
1090
sewardj67f1fcc2005-07-03 10:41:02 +00001091# does this compiler support -mmmx ?
1092AC_MSG_CHECKING([if gcc accepts -mmmx])
1093
1094safe_CFLAGS=$CFLAGS
1095CFLAGS="-mmmx"
1096
1097AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001098 return 0;
sewardj67f1fcc2005-07-03 10:41:02 +00001099],
1100[
1101FLAG_MMMX="-mmmx"
1102AC_MSG_RESULT([yes])
1103], [
1104FLAG_MMMX=""
1105AC_MSG_RESULT([no])
1106])
1107CFLAGS=$safe_CFLAGS
1108
1109AC_SUBST(FLAG_MMMX)
1110
1111
1112# does this compiler support -msse ?
1113AC_MSG_CHECKING([if gcc accepts -msse])
1114
1115safe_CFLAGS=$CFLAGS
1116CFLAGS="-msse"
1117
1118AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001119 return 0;
sewardj67f1fcc2005-07-03 10:41:02 +00001120],
1121[
1122FLAG_MSSE="-msse"
1123AC_MSG_RESULT([yes])
1124], [
1125FLAG_MSSE=""
1126AC_MSG_RESULT([no])
1127])
1128CFLAGS=$safe_CFLAGS
1129
1130AC_SUBST(FLAG_MSSE)
1131
1132
sewardj5b754b42002-06-03 22:53:35 +00001133# does this compiler support -mpreferred-stack-boundary=2 ?
1134AC_MSG_CHECKING([if gcc accepts -mpreferred-stack-boundary])
1135
daywalker3664f562003-10-17 13:43:46 +00001136safe_CFLAGS=$CFLAGS
sewardj5b754b42002-06-03 22:53:35 +00001137CFLAGS="-mpreferred-stack-boundary=2"
1138
1139AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001140 return 0;
sewardj5b754b42002-06-03 22:53:35 +00001141],
1142[
1143PREFERRED_STACK_BOUNDARY="-mpreferred-stack-boundary=2"
daywalker3664f562003-10-17 13:43:46 +00001144AC_MSG_RESULT([yes])
sewardj5b754b42002-06-03 22:53:35 +00001145], [
1146PREFERRED_STACK_BOUNDARY=""
1147AC_MSG_RESULT([no])
1148])
daywalker3664f562003-10-17 13:43:46 +00001149CFLAGS=$safe_CFLAGS
sewardj5b754b42002-06-03 22:53:35 +00001150
1151AC_SUBST(PREFERRED_STACK_BOUNDARY)
1152
sewardj535c50f2005-06-04 23:14:53 +00001153
sewardjb5f6f512005-03-10 23:59:00 +00001154# does this compiler support -Wno-pointer-sign ?
bart56730cd2008-05-11 06:41:46 +00001155AC_MSG_CHECKING([if gcc accepts -Wno-pointer-sign])
sewardjb5f6f512005-03-10 23:59:00 +00001156
1157safe_CFLAGS=$CFLAGS
1158CFLAGS="-Wno-pointer-sign"
1159
1160AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001161 return 0;
sewardjb5f6f512005-03-10 23:59:00 +00001162],
1163[
1164no_pointer_sign=yes
1165AC_MSG_RESULT([yes])
1166], [
1167no_pointer_sign=no
1168AC_MSG_RESULT([no])
1169])
1170CFLAGS=$safe_CFLAGS
1171
1172if test x$no_pointer_sign = xyes; then
1173 CFLAGS="$CFLAGS -Wno-pointer-sign"
1174fi
1175
sewardj535c50f2005-06-04 23:14:53 +00001176
barte026bd22009-07-04 12:17:07 +00001177# does this compiler support -Wno-empty-body ?
1178
1179AC_MSG_CHECKING([if gcc accepts -Wno-empty-body])
1180
1181safe_CFLAGS=$CFLAGS
1182CFLAGS="-Wno-empty-body"
1183
1184AC_TRY_COMPILE(
1185[ ],
1186[
1187 return 0;
1188],
1189[
1190AC_SUBST([FLAG_W_NO_EMPTY_BODY], [-Wno-empty-body])
1191AC_MSG_RESULT([yes])
1192],
1193[
1194AC_SUBST([FLAG_W_NO_EMPTY_BODY], [])
1195AC_MSG_RESULT([no])
1196])
1197CFLAGS=$safe_CFLAGS
1198
1199
bart9d865fa2008-06-23 12:11:49 +00001200# does this compiler support -Wno-format-zero-length ?
1201
1202AC_MSG_CHECKING([if gcc accepts -Wno-format-zero-length])
1203
1204safe_CFLAGS=$CFLAGS
1205CFLAGS="-Wno-format-zero-length"
1206
1207AC_TRY_COMPILE(
1208[ ],
1209[
1210 return 0;
1211],
1212[
1213AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [-Wno-format-zero-length])
1214AC_MSG_RESULT([yes])
1215],
1216[
1217AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [])
1218AC_MSG_RESULT([no])
1219])
1220CFLAGS=$safe_CFLAGS
1221
1222
bartbf9b85c2009-08-12 12:55:56 +00001223# does this compiler support -Wno-uninitialized ?
1224
1225AC_MSG_CHECKING([if gcc accepts -Wno-uninitialized])
1226
1227safe_CFLAGS=$CFLAGS
1228CFLAGS="-Wno-uninitialized"
1229
1230AC_TRY_COMPILE(
1231[ ],
1232[
1233 return 0;
1234],
1235[
1236AC_SUBST([FLAG_W_NO_UNINITIALIZED], [-Wno-uninitialized])
1237AC_MSG_RESULT([yes])
1238],
1239[
1240AC_SUBST([FLAG_W_NO_UNINITIALIZED], [])
1241AC_MSG_RESULT([no])
1242])
1243CFLAGS=$safe_CFLAGS
1244
1245
bart56730cd2008-05-11 06:41:46 +00001246# does this compiler support -Wextra or the older -W ?
1247
1248AC_MSG_CHECKING([if gcc accepts -Wextra or -W])
1249
1250safe_CFLAGS=$CFLAGS
1251CFLAGS="-Wextra"
1252
1253AC_TRY_COMPILE(
1254[ ],
1255[
1256 return 0;
1257],
1258[
1259AC_SUBST([FLAG_W_EXTRA], [-Wextra])
1260AC_MSG_RESULT([-Wextra])
1261], [
1262 CFLAGS="-W"
1263 AC_TRY_COMPILE(
1264 [ ],
1265 [
1266 return 0;
1267 ],
1268 [
1269 AC_SUBST([FLAG_W_EXTRA], [-W])
1270 AC_MSG_RESULT([-W])
1271 ], [
1272 AC_SUBST([FLAG_W_EXTRA], [])
1273 AC_MSG_RESULT([not supported])
1274 ])
1275])
1276CFLAGS=$safe_CFLAGS
1277
1278
sewardja72c26d2007-05-01 13:44:08 +00001279# does this compiler support -fno-stack-protector ?
bart56730cd2008-05-11 06:41:46 +00001280AC_MSG_CHECKING([if gcc accepts -fno-stack-protector])
sewardja72c26d2007-05-01 13:44:08 +00001281
1282safe_CFLAGS=$CFLAGS
1283CFLAGS="-fno-stack-protector"
1284
1285AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001286 return 0;
sewardja72c26d2007-05-01 13:44:08 +00001287],
1288[
1289no_stack_protector=yes
1290FLAG_FNO_STACK_PROTECTOR="-fno-stack-protector"
1291AC_MSG_RESULT([yes])
1292], [
1293no_stack_protector=no
1294FLAG_FNO_STACK_PROTECTOR=""
1295AC_MSG_RESULT([no])
1296])
1297CFLAGS=$safe_CFLAGS
1298
1299AC_SUBST(FLAG_FNO_STACK_PROTECTOR)
1300
1301if test x$no_stack_protector = xyes; then
1302 CFLAGS="$CFLAGS -fno-stack-protector"
1303fi
1304
1305
bart56730cd2008-05-11 06:41:46 +00001306# does this compiler support --param inline-unit-growth=... ?
1307
1308AC_MSG_CHECKING([if gcc accepts --param inline-unit-growth])
1309
1310safe_CFLAGS=$CFLAGS
1311CFLAGS="--param inline-unit-growth=900"
1312
1313AC_TRY_COMPILE(
1314[ ],
1315[
1316 return 0;
1317],
1318[
1319AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH],
1320 ["--param inline-unit-growth=900"])
1321AC_MSG_RESULT([yes])
1322], [
1323AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH], [""])
1324AC_MSG_RESULT([no])
1325])
1326CFLAGS=$safe_CFLAGS
1327
1328
sewardjd3645802010-06-13 22:13:58 +00001329# does the linker support -Wl,--build-id=none ? Note, it's
1330# important that we test indirectly via whichever C compiler
1331# is selected, rather than testing /usr/bin/ld or whatever
1332# directly.
bart699fbac2010-06-08 18:23:59 +00001333
sewardjd3645802010-06-13 22:13:58 +00001334AC_MSG_CHECKING([if the linker accepts -Wl,--build-id=none])
bart699fbac2010-06-08 18:23:59 +00001335
1336safe_CFLAGS=$CFLAGS
1337CFLAGS="-Wl,--build-id=none"
1338
bart8508c752010-06-10 06:26:21 +00001339AC_LINK_IFELSE(
1340[AC_LANG_PROGRAM([ ], [return 0;])],
bart699fbac2010-06-08 18:23:59 +00001341[
1342 AC_SUBST([FLAG_NO_BUILD_ID], ["-Wl,--build-id=none"])
1343 AC_MSG_RESULT([yes])
1344], [
1345 AC_SUBST([FLAG_NO_BUILD_ID], [""])
1346 AC_MSG_RESULT([no])
1347])
1348CFLAGS=$safe_CFLAGS
1349
1350
sewardj00f1e622006-03-12 16:47:10 +00001351# does the ppc assembler support "mtocrf" et al?
1352AC_MSG_CHECKING([if ppc32/64 as supports mtocrf/mfocrf])
1353
1354AC_TRY_COMPILE(, [
sewardjdd4cbe12006-03-12 17:27:44 +00001355__asm__ __volatile__("mtocrf 4,0");
1356__asm__ __volatile__("mfocrf 0,4");
sewardj00f1e622006-03-12 16:47:10 +00001357],
1358[
1359ac_have_as_ppc_mftocrf=yes
1360AC_MSG_RESULT([yes])
1361], [
1362ac_have_as_ppc_mftocrf=no
1363AC_MSG_RESULT([no])
1364])
1365if test x$ac_have_as_ppc_mftocrf = xyes ; then
1366 AC_DEFINE(HAVE_AS_PPC_MFTOCRF, 1, [Define to 1 if as supports mtocrf/mfocrf.])
1367fi
1368
1369
sewardjf0aabf82007-03-22 00:24:21 +00001370# does the x86/amd64 assembler understand SSE3 instructions?
sewardjfa18a262007-03-22 12:13:13 +00001371# Note, this doesn't generate a C-level symbol. It generates a
1372# automake-level symbol (BUILD_SSE3_TESTS), used in test Makefile.am's
sewardjf0aabf82007-03-22 00:24:21 +00001373AC_MSG_CHECKING([if x86/amd64 assembler speaks SSE3])
1374
1375AC_TRY_COMPILE(, [
1376 do { long long int x;
1377 __asm__ __volatile__("fisttpq (%0)" : :"r"(&x) ); }
1378 while (0)
1379],
1380[
1381ac_have_as_sse3=yes
1382AC_MSG_RESULT([yes])
1383], [
1384ac_have_as_sse3=no
1385AC_MSG_RESULT([no])
1386])
sewardjfa18a262007-03-22 12:13:13 +00001387
1388AM_CONDITIONAL(BUILD_SSE3_TESTS, test x$ac_have_as_sse3 = xyes)
sewardjf0aabf82007-03-22 00:24:21 +00001389
1390
sewardj6d6da5b2008-02-09 12:07:40 +00001391# Ditto for SSSE3 instructions (note extra S)
1392# Note, this doesn't generate a C-level symbol. It generates a
1393# automake-level symbol (BUILD_SSSE3_TESTS), used in test Makefile.am's
1394AC_MSG_CHECKING([if x86/amd64 assembler speaks SSSE3])
1395
1396AC_TRY_COMPILE(, [
1397 do { long long int x;
1398 __asm__ __volatile__(
1399 "pabsb (%0),%%xmm7" : : "r"(&x) : "xmm7" ); }
1400 while (0)
1401],
1402[
1403ac_have_as_ssse3=yes
1404AC_MSG_RESULT([yes])
1405], [
1406ac_have_as_ssse3=no
1407AC_MSG_RESULT([no])
1408])
1409
1410AM_CONDITIONAL(BUILD_SSSE3_TESTS, test x$ac_have_as_ssse3 = xyes)
1411
1412
sewardjb5f6f512005-03-10 23:59:00 +00001413# Check for TLS support in the compiler and linker
bartca9f2ad2008-06-02 07:14:20 +00001414if test "x${cross_compiling}" = "xno"; then
1415# Native compilation: check whether running a program using TLS succeeds.
1416# Linking only is not sufficient -- e.g. on Red Hat 7.3 linking TLS programs
1417# succeeds but running programs using TLS fails.
1418AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1419 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1420 [vg_cv_tls=$enableval],
1421 [AC_RUN_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
1422 [[return foo;]])],
1423 [vg_cv_tls=yes],
1424 [vg_cv_tls=no])])])
1425else
1426# Cross-compiling: check whether linking a program using TLS succeeds.
sewardjb5f6f512005-03-10 23:59:00 +00001427AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1428 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1429 [vg_cv_tls=$enableval],
bartcddeaf52008-05-25 15:58:11 +00001430 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
sewardjb5f6f512005-03-10 23:59:00 +00001431 [[return foo;]])],
1432 [vg_cv_tls=yes],
1433 [vg_cv_tls=no])])])
bartca9f2ad2008-06-02 07:14:20 +00001434fi
sewardjb5f6f512005-03-10 23:59:00 +00001435
1436if test "$vg_cv_tls" = yes; then
1437AC_DEFINE([HAVE_TLS], 1, [can use __thread to define thread-local variables])
1438fi
sewardj5b754b42002-06-03 22:53:35 +00001439
sewardj535c50f2005-06-04 23:14:53 +00001440
njn7fd6d382009-01-22 21:56:32 +00001441#----------------------------------------------------------------------------
bart62f54e42008-07-28 11:35:10 +00001442# Checks for C header files.
njn7fd6d382009-01-22 21:56:32 +00001443#----------------------------------------------------------------------------
1444
sewardjde4a1d02002-03-22 01:27:54 +00001445AC_HEADER_STDC
bartf5ceec82008-04-26 07:45:10 +00001446AC_CHECK_HEADERS([ \
bart1f2b1432009-01-16 12:06:54 +00001447 asm/unistd.h \
bartf5ceec82008-04-26 07:45:10 +00001448 endian.h \
1449 mqueue.h \
1450 sys/endian.h \
1451 sys/epoll.h \
1452 sys/eventfd.h \
bartce48fa92008-04-26 10:59:46 +00001453 sys/klog.h \
bartf5ceec82008-04-26 07:45:10 +00001454 sys/poll.h \
bart71bad292008-04-27 11:43:23 +00001455 sys/signal.h \
bartf5ceec82008-04-26 07:45:10 +00001456 sys/signalfd.h \
bart71bad292008-04-27 11:43:23 +00001457 sys/syscall.h \
1458 sys/time.h \
1459 sys/types.h \
bartf5ceec82008-04-26 07:45:10 +00001460 ])
sewardjde4a1d02002-03-22 01:27:54 +00001461
njn7fd6d382009-01-22 21:56:32 +00001462#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001463# Checks for typedefs, structures, and compiler characteristics.
njn7fd6d382009-01-22 21:56:32 +00001464#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001465AC_TYPE_UID_T
1466AC_TYPE_OFF_T
1467AC_TYPE_SIZE_T
1468AC_HEADER_TIME
1469
sewardj535c50f2005-06-04 23:14:53 +00001470
njn7fd6d382009-01-22 21:56:32 +00001471#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001472# Checks for library functions.
njn7fd6d382009-01-22 21:56:32 +00001473#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001474AC_FUNC_MEMCMP
1475AC_FUNC_MMAP
1476AC_TYPE_SIGNAL
1477
bart71bad292008-04-27 11:43:23 +00001478AC_CHECK_LIB([rt], [clock_gettime])
bart41ac62a2008-07-07 16:58:03 +00001479
bartf5ceec82008-04-26 07:45:10 +00001480AC_CHECK_FUNCS([ \
bart71bad292008-04-27 11:43:23 +00001481 clock_gettime\
bartf5ceec82008-04-26 07:45:10 +00001482 epoll_create \
1483 epoll_pwait \
bartf5ceec82008-04-26 07:45:10 +00001484 floor \
bartce48fa92008-04-26 10:59:46 +00001485 klogctl \
bartf5ceec82008-04-26 07:45:10 +00001486 mallinfo \
1487 memchr \
1488 memset \
1489 mkdir \
njnf76d27a2009-05-28 01:53:07 +00001490 mremap \
bartf5ceec82008-04-26 07:45:10 +00001491 ppoll \
bart6d45e922009-01-20 13:45:38 +00001492 pthread_barrier_init \
1493 pthread_condattr_setclock \
1494 pthread_mutex_timedlock \
1495 pthread_rwlock_timedrdlock \
1496 pthread_rwlock_timedwrlock \
1497 pthread_spin_lock \
barta72a27b2010-04-29 06:22:17 +00001498 pthread_yield \
bartd1f724c2009-08-26 18:11:18 +00001499 readlinkat \
bartf5ceec82008-04-26 07:45:10 +00001500 semtimedop \
1501 signalfd \
njn6cc22472009-03-16 03:46:48 +00001502 sigwaitinfo \
bartf5ceec82008-04-26 07:45:10 +00001503 strchr \
1504 strdup \
1505 strpbrk \
1506 strrchr \
1507 strstr \
barta72a27b2010-04-29 06:22:17 +00001508 syscall \
bartf5ceec82008-04-26 07:45:10 +00001509 timerfd \
1510 utimensat \
1511 ])
sewardjde4a1d02002-03-22 01:27:54 +00001512
bart623eec32008-07-29 17:54:49 +00001513# AC_CHECK_LIB adds any library found to the variable LIBS, and links these
1514# libraries with any shared object and/or executable. This is NOT what we
1515# want for e.g. vgpreload_core-x86-linux.so
1516LIBS=""
sewardj80637752006-03-02 13:48:21 +00001517
bart6d45e922009-01-20 13:45:38 +00001518AM_CONDITIONAL([HAVE_PTHREAD_BARRIER],
1519 [test x$ac_cv_func_pthread_barrier_init = xyes])
bart2eaa8f22009-01-20 14:01:16 +00001520AM_CONDITIONAL([HAVE_PTHREAD_MUTEX_TIMEDLOCK],
1521 [test x$ac_cv_func_pthread_mutex_timedlock = xyes])
bart6d45e922009-01-20 13:45:38 +00001522AM_CONDITIONAL([HAVE_PTHREAD_SPINLOCK],
1523 [test x$ac_cv_func_pthread_spin_lock = xyes])
1524
njn7fd6d382009-01-22 21:56:32 +00001525
1526#----------------------------------------------------------------------------
1527# MPI checks
1528#----------------------------------------------------------------------------
sewardj03d86f22006-10-17 00:57:24 +00001529# Do we have a useable MPI setup on the primary and/or secondary targets?
1530# On Linux, by default, assumes mpicc and -m32/-m64
1531# On AIX, by default, assumes mpxlc and -q32/-q64
sewardje9fa5062006-03-12 18:29:18 +00001532# Note: this is a kludge in that it assumes the specified mpicc
sewardj03d86f22006-10-17 00:57:24 +00001533# understands -m32/-m64/-q32/-q64 regardless of what is specified using
1534# --with-mpicc=.
sewardj0ad46092006-03-02 17:09:16 +00001535MPI_CC="mpicc"
njn7fd6d382009-01-22 21:56:32 +00001536if test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
1537 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001538 MPI_CC="mpxlc"
1539fi
1540
sewardje9fa5062006-03-12 18:29:18 +00001541mflag_primary=
njn7fd6d382009-01-22 21:56:32 +00001542if test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
1543 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX ; then
sewardje9fa5062006-03-12 18:29:18 +00001544 mflag_primary=$FLAG_M32
njn7fd6d382009-01-22 21:56:32 +00001545elif test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \
1546 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX ; then
sewardje9fa5062006-03-12 18:29:18 +00001547 mflag_primary=$FLAG_M64
njn7fd6d382009-01-22 21:56:32 +00001548elif test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001549 mflag_primary=-q32
njn7fd6d382009-01-22 21:56:32 +00001550elif test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001551 mflag_primary=-q64
sewardje9fa5062006-03-12 18:29:18 +00001552fi
1553
sewardj03d86f22006-10-17 00:57:24 +00001554mflag_secondary=
njn7fd6d382009-01-22 21:56:32 +00001555if test x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX \
1556 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX ; then
sewardj03d86f22006-10-17 00:57:24 +00001557 mflag_secondary=$FLAG_M32
njn7fd6d382009-01-22 21:56:32 +00001558elif test x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001559 mflag_secondary=-q32
1560fi
1561
1562
sewardj0ad46092006-03-02 17:09:16 +00001563AC_ARG_WITH(mpicc,
sewardjb70a6132006-05-27 21:14:09 +00001564 [ --with-mpicc= Specify name of MPI2-ised C compiler],
sewardj0ad46092006-03-02 17:09:16 +00001565 MPI_CC=$withval
1566)
sewardj03d86f22006-10-17 00:57:24 +00001567AC_SUBST(MPI_CC)
1568
1569## See if MPI_CC works for the primary target
1570##
1571AC_MSG_CHECKING([primary target for usable MPI2-compliant C compiler and mpi.h])
sewardj0ad46092006-03-02 17:09:16 +00001572saved_CC=$CC
sewardjde4f3842006-03-09 02:41:41 +00001573saved_CFLAGS=$CFLAGS
sewardj0ad46092006-03-02 17:09:16 +00001574CC=$MPI_CC
sewardje9fa5062006-03-12 18:29:18 +00001575CFLAGS=$mflag_primary
sewardjd3fcc642006-03-09 02:49:56 +00001576AC_TRY_LINK([
sewardj1a85e602006-03-08 15:26:10 +00001577#include <mpi.h>
1578#include <stdio.h>
sewardjde4f3842006-03-09 02:41:41 +00001579],[
1580 int r = MPI_Init(NULL,NULL);
1581 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1582 return r;
1583], [
sewardj03d86f22006-10-17 00:57:24 +00001584ac_have_mpi2_pri=yes
sewardj1a85e602006-03-08 15:26:10 +00001585AC_MSG_RESULT([yes, $MPI_CC])
sewardj80637752006-03-02 13:48:21 +00001586], [
sewardj03d86f22006-10-17 00:57:24 +00001587ac_have_mpi2_pri=no
sewardj80637752006-03-02 13:48:21 +00001588AC_MSG_RESULT([no])
1589])
sewardj0ad46092006-03-02 17:09:16 +00001590CC=$saved_CC
sewardjde4f3842006-03-09 02:41:41 +00001591CFLAGS=$saved_CFLAGS
sewardj03d86f22006-10-17 00:57:24 +00001592AM_CONDITIONAL(BUILD_MPIWRAP_PRI, test x$ac_have_mpi2_pri = xyes)
sewardj80637752006-03-02 13:48:21 +00001593
sewardj03d86f22006-10-17 00:57:24 +00001594## See if MPI_CC works for the secondary target. Complication: what if
1595## there is no secondary target? We need this to then fail.
1596## Kludge this by making MPI_CC something which will surely fail in
1597## such a case.
1598##
1599AC_MSG_CHECKING([secondary target for usable MPI2-compliant C compiler and mpi.h])
1600saved_CC=$CC
1601saved_CFLAGS=$CFLAGS
njn7fd6d382009-01-22 21:56:32 +00001602if test x$VGCONF_PLATFORM_SEC_CAPS = x ; then
sewardj03d86f22006-10-17 00:57:24 +00001603 CC="$MPI_CC this will surely fail"
1604else
1605 CC=$MPI_CC
1606fi
1607CFLAGS=$mflag_secondary
1608AC_TRY_LINK([
1609#include <mpi.h>
1610#include <stdio.h>
1611],[
1612 int r = MPI_Init(NULL,NULL);
1613 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1614 return r;
1615], [
1616ac_have_mpi2_sec=yes
1617AC_MSG_RESULT([yes, $MPI_CC])
1618], [
1619ac_have_mpi2_sec=no
1620AC_MSG_RESULT([no])
1621])
1622CC=$saved_CC
1623CFLAGS=$saved_CFLAGS
1624AM_CONDITIONAL(BUILD_MPIWRAP_SEC, test x$ac_have_mpi2_sec = xyes)
sewardj80637752006-03-02 13:48:21 +00001625
1626
njn7fd6d382009-01-22 21:56:32 +00001627#----------------------------------------------------------------------------
1628# Other library checks
1629#----------------------------------------------------------------------------
sewardj493c4ef2008-12-13 16:45:19 +00001630# There now follow some tests for QtCore, Boost, and OpenMP. These
1631# tests are present because Drd has some regression tests that use
1632# these packages. All regression test programs all compiled only
1633# for the primary target. And so it is important that the configure
1634# checks that follow, use the correct -m32 or -m64 flag for the
1635# primary target (called $mflag_primary). Otherwise, we can end up
1636# in a situation (eg) where, on amd64-linux, the test for Boost checks
1637# for usable 64-bit Boost facilities, but because we are doing a 32-bit
1638# only build (meaning, the primary target is x86-linux), the build
1639# of the regtest programs that use Boost fails, because they are
1640# build as 32-bit (IN THIS EXAMPLE).
1641#
1642# Hence: ALWAYS USE $mflag_primary FOR CONFIGURE TESTS FOR FACILITIES
1643# NEEDED BY THE REGRESSION TEST PROGRAMS.
1644
1645
bart21d3cfc2008-08-02 09:08:17 +00001646# The test below verifies whether the QtCore package been installed.
1647# This test works as follows:
1648# - If pkg-config was not installed at the time autogen.sh was run,
1649# the definition of the PKG_CHECK_EXISTS() macro will not be found by
1650# autogen.sh. Augogen.sh will generate a configure script that prints
1651# a warning about pkg-config and proceeds as if Qt4 has not been installed.
1652# - If pkg-config was installed at the time autogen.sh was run,
1653# the generated configure script will try to detect the presence of the
1654# Qt4 QtCore library by looking up compile and linker flags in the file
1655# called QtCore.pc.
1656# - pkg-config settings can be overridden via the configure variables
1657# QTCORE_CFLAGS and QTCORE_LIBS (added by the pkg-config m4 macro's to the
1658# configure script -- see also ./configure --help).
1659# - The QTCORE_CFLAGS and QTCORE_LIBS configure variables can be used even if
1660# the pkg-config executable is not present on the system on which the
1661# configure script is run.
bart41ac62a2008-07-07 16:58:03 +00001662
bart21d3cfc2008-08-02 09:08:17 +00001663ifdef(
1664 [PKG_CHECK_EXISTS],
1665 [PKG_CHECK_EXISTS(
1666 [QtCore],
1667 [
1668 PKG_CHECK_MODULES([QTCORE], [QtCore])
bart11fbd892008-09-21 15:00:58 +00001669 # Paranoia: don't trust the result reported by pkg-config, but when
1670 # pkg-config reports that QtCore has been found, verify whether linking
1671 # programs with QtCore succeeds.
1672 AC_LANG(C++)
1673 safe_CXXFLAGS="${CXXFLAGS}"
sewardj493c4ef2008-12-13 16:45:19 +00001674 CXXFLAGS="${QTCORE_CFLAGS} ${QTCORE_LIBS} $mflag_primary"
bart11fbd892008-09-21 15:00:58 +00001675 AC_TRY_LINK(
1676 [#include <QMutex>],
1677 [QMutex Mutex;],
1678 [ac_have_qtcore=yes],
1679 [
1680 AC_MSG_WARN([Although pkg-config detected Qt4, linking Qt4 programs fails. Skipping Qt4.])
1681 ac_have_qtcore=no
1682 ]
1683 )
1684 CXXFLAGS="${safe_CXXFLAGS}"
bart21d3cfc2008-08-02 09:08:17 +00001685 ],
1686 [
1687 ac_have_qtcore=no
1688 ]
1689 )
1690 ],
1691 AC_MSG_WARN([pkg-config has not been installed or is too old.])
1692 AC_MSG_WARN([Detection of Qt4 will be skipped.])
1693 [ac_have_qtcore=no]
1694)
bart41ac62a2008-07-07 16:58:03 +00001695
1696AM_CONDITIONAL([HAVE_QTCORE], [test x$ac_have_qtcore = xyes])
1697
1698
bart62f54e42008-07-28 11:35:10 +00001699# Test for QMutex::tryLock(int), which has been introduced in Qt 4.3.
1700# See also http://doc.trolltech.com/4.3/qmutex.html.
1701if test x$ac_have_qtcore = xyes; then
1702 AC_MSG_CHECKING([for Qt4 QMutex::tryLock(int)])
1703 AC_LANG(C++)
bart21d3cfc2008-08-02 09:08:17 +00001704 safe_CXXFLAGS="${CXXFLAGS}"
sewardj493c4ef2008-12-13 16:45:19 +00001705 CXXFLAGS="${QTCORE_CFLAGS} $mflag_primary"
bart62f54e42008-07-28 11:35:10 +00001706 AC_TRY_COMPILE([
1707 #include <QtCore/QMutex>
1708 ],
1709 [
1710 QMutex M;
1711 M.tryLock(1);
1712 M.unlock();
1713 return 0;
1714 ],
1715 [
1716 AC_MSG_RESULT([yes])
1717 AC_DEFINE([HAVE_QTCORE_QMUTEX_TRYLOCK_INT], [1], [Define to 1 if the installed version of Qt4 provides QMutex::tryLock(int).])
1718 ],
1719 [
1720 AC_MSG_RESULT([no])
1721 ])
bart21d3cfc2008-08-02 09:08:17 +00001722 CXXFLAGS="${safe_CXXFLAGS}"
bart62f54e42008-07-28 11:35:10 +00001723 AC_LANG(C)
1724fi
1725
1726
bart4f43e002009-11-09 16:07:43 +00001727# Test for QAtomicInt, which has been introduced in Qt 4.4.
1728# See also http://doc.trolltech.com/4.4/qatomicint.html.
1729if test x$ac_have_qtcore = xyes; then
bart9da08ba2009-11-11 19:22:05 +00001730 AC_MSG_CHECKING([for Qt4 QAtomicInt])
bart4f43e002009-11-09 16:07:43 +00001731 AC_LANG(C++)
1732 safe_CXXFLAGS="${CXXFLAGS}"
1733 CXXFLAGS="${QTCORE_CFLAGS} $mflag_primary"
1734 AC_TRY_COMPILE([
1735 #include <QtCore/QAtomicInt>
1736 ],
1737 [
1738 QAtomicInt I;
1739 I.testAndSetOrdered(0, 1);
1740 return 0;
1741 ],
1742 [
1743 ac_have_qtcore_qatomicint=yes
1744 AC_MSG_RESULT([yes])
1745 AC_DEFINE([HAVE_QTCORE_QATOMICINT], [1], [Define to 1 if the installed version of Qt4 provides QAtomicInt.])
1746 ],
1747 [
1748 ac_have_qtcore_qatomicint=no
1749 AC_MSG_RESULT([no])
1750 ])
1751 CXXFLAGS="${safe_CXXFLAGS}"
1752 AC_LANG(C)
1753fi
1754
1755AM_CONDITIONAL([HAVE_QTCORE_QATOMICINT], [test x$ac_have_qtcore_qatomicint = xyes])
1756
1757
1758
sewardj493c4ef2008-12-13 16:45:19 +00001759# Check whether the boost library 1.35 or later has been installed.
1760# The Boost.Threads library has undergone a major rewrite in version 1.35.0.
1761
1762AC_MSG_CHECKING([for boost])
1763
1764AC_LANG(C++)
1765safe_CXXFLAGS=$CXXFLAGS
1766CXXFLAGS="-lboost_thread-mt $mflag_primary"
1767
1768AC_LINK_IFELSE(
1769[
1770#include <boost/thread.hpp>
1771static void thread_func(void)
1772{ }
1773int main(int argc, char** argv)
1774{
1775 boost::thread t(thread_func);
1776 return 0;
1777}
1778],
1779[
1780ac_have_boost_1_35=yes
1781AC_SUBST([BOOST_CFLAGS], [])
1782AC_SUBST([BOOST_LIBS], ["${CXXFLAGS}"])
1783AC_MSG_RESULT([yes])
1784], [
1785ac_have_boost_1_35=no
1786AC_MSG_RESULT([no])
1787])
1788
1789CXXFLAGS=$safe_CXXFLAGS
1790AC_LANG(C)
1791
1792AM_CONDITIONAL([HAVE_BOOST_1_35], [test x$ac_have_boost_1_35 = xyes])
1793
1794
1795# does this compiler support -fopenmp, does it have the include file
1796# <omp.h> and does it have libgomp ?
1797
1798AC_MSG_CHECKING([for OpenMP])
1799
1800safe_CFLAGS=$CFLAGS
sewardjc876a2f2009-01-22 22:44:30 +00001801CFLAGS="-fopenmp $mflag_primary"
sewardj493c4ef2008-12-13 16:45:19 +00001802
1803AC_LINK_IFELSE(
1804[
1805#include <omp.h>
1806int main(int argc, char** argv)
1807{
1808 omp_set_dynamic(0);
1809 return 0;
1810}
1811],
1812[
1813ac_have_openmp=yes
1814AC_MSG_RESULT([yes])
1815], [
1816ac_have_openmp=no
1817AC_MSG_RESULT([no])
1818])
1819CFLAGS=$safe_CFLAGS
1820
1821AM_CONDITIONAL([HAVE_OPENMP], [test x$ac_have_openmp = xyes])
1822
1823
sewardjc876a2f2009-01-22 22:44:30 +00001824# does this compiler have built-in functions for atomic memory access ?
1825AC_MSG_CHECKING([if gcc supports __sync_bool_compare_and_swap])
1826
1827safe_CFLAGS=$CFLAGS
1828CFLAGS="$mflag_primary"
1829
1830AC_TRY_LINK(,
1831[
1832 int variable = 1;
1833 return (__sync_bool_compare_and_swap(&variable, 1, 2)
1834 && __sync_add_and_fetch(&variable, 1) ? 1 : 0)
1835],
1836[
bartc82d1372009-05-31 16:21:23 +00001837 ac_have_builtin_atomic=yes
sewardjc876a2f2009-01-22 22:44:30 +00001838 AC_MSG_RESULT([yes])
1839 AC_DEFINE(HAVE_BUILTIN_ATOMIC, 1, [Define to 1 if gcc supports __sync_bool_compare_and_swap() a.o.])
1840],
1841[
bartc82d1372009-05-31 16:21:23 +00001842 ac_have_builtin_atomic=no
sewardjc876a2f2009-01-22 22:44:30 +00001843 AC_MSG_RESULT([no])
1844])
1845
1846CFLAGS=$safe_CFLAGS
1847
bartc82d1372009-05-31 16:21:23 +00001848AM_CONDITIONAL([HAVE_BUILTIN_ATOMIC], [test x$ac_have_builtin_atomic = xyes])
1849
sewardjc876a2f2009-01-22 22:44:30 +00001850
njn7fd6d382009-01-22 21:56:32 +00001851#----------------------------------------------------------------------------
1852# Ok. We're done checking.
1853#----------------------------------------------------------------------------
sewardj80637752006-03-02 13:48:21 +00001854
njn8b68b642009-06-24 00:37:09 +00001855# Nb: VEX/Makefile is generated from Makefile.vex.in.
1856AC_CONFIG_FILES([
sewardjde4a1d02002-03-22 01:27:54 +00001857 Makefile
njn8b68b642009-06-24 00:37:09 +00001858 VEX/Makefile:Makefile.vex.in
njn25cac76cb2002-09-23 11:21:57 +00001859 valgrind.spec
muellerbddd6072003-11-19 21:50:07 +00001860 valgrind.pc
dirk07596a22008-04-25 11:33:30 +00001861 glibc-2.X.supp
njn254d542432002-09-23 16:09:39 +00001862 docs/Makefile
1863 tests/Makefile
njnc2e7f482002-09-27 08:44:17 +00001864 tests/vg_regtest
njnec0c27a2005-12-10 23:11:28 +00001865 perf/Makefile
1866 perf/vg_perf
njn254d542432002-09-23 16:09:39 +00001867 include/Makefile
njn7a6e7462002-11-09 17:53:30 +00001868 auxprogs/Makefile
njn8b68b642009-06-24 00:37:09 +00001869 mpi/Makefile
njn25ab726032002-09-23 16:24:41 +00001870 coregrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001871 memcheck/Makefile
1872 memcheck/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001873 memcheck/tests/amd64/Makefile
njnc6168192004-11-29 13:54:10 +00001874 memcheck/tests/x86/Makefile
njn3b3b76d2009-01-19 03:44:19 +00001875 memcheck/tests/linux/Makefile
njnf76d27a2009-05-28 01:53:07 +00001876 memcheck/tests/darwin/Makefile
njnea2d6fd2010-07-01 00:20:20 +00001877 memcheck/tests/amd64-linux/Makefile
njna454ec02009-01-19 03:16:59 +00001878 memcheck/tests/x86-linux/Makefile
sewardj0e342a02010-09-03 23:49:33 +00001879 memcheck/tests/ppc32/Makefile
1880 memcheck/tests/ppc64/Makefile
njn29a5c012009-05-06 06:15:55 +00001881 memcheck/perf/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001882 cachegrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001883 cachegrind/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001884 cachegrind/tests/x86/Makefile
njnf2df9b52002-10-04 11:35:47 +00001885 cachegrind/cg_annotate
njn69d495d2010-06-30 05:23:34 +00001886 cachegrind/cg_diff
weidendoa17f2a32006-03-20 10:27:30 +00001887 callgrind/Makefile
1888 callgrind/callgrind_annotate
1889 callgrind/callgrind_control
1890 callgrind/tests/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001891 helgrind/Makefile
njnf2df9b52002-10-04 11:35:47 +00001892 helgrind/tests/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001893 massif/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001894 massif/tests/Makefile
njn734b8052007-11-01 04:40:37 +00001895 massif/perf/Makefile
njnd5a8d242007-11-02 20:44:57 +00001896 massif/ms_print
njn25cac76cb2002-09-23 11:21:57 +00001897 lackey/Makefile
njnf2df9b52002-10-04 11:35:47 +00001898 lackey/tests/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001899 none/Makefile
1900 none/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001901 none/tests/amd64/Makefile
cerion85665ca2005-06-20 15:51:07 +00001902 none/tests/ppc32/Makefile
sewardj2c48c7b2005-11-29 13:05:56 +00001903 none/tests/ppc64/Makefile
njnc6168192004-11-29 13:54:10 +00001904 none/tests/x86/Makefile
sewardj59570ff2010-01-01 11:59:33 +00001905 none/tests/arm/Makefile
njn0458a122009-02-13 06:23:46 +00001906 none/tests/linux/Makefile
njnf76d27a2009-05-28 01:53:07 +00001907 none/tests/darwin/Makefile
njn06ca3322009-04-15 23:10:04 +00001908 none/tests/x86-linux/Makefile
sewardj9c606bd2008-09-18 18:12:50 +00001909 exp-ptrcheck/Makefile
1910 exp-ptrcheck/tests/Makefile
bartccf17de2008-07-04 15:14:35 +00001911 drd/Makefile
bartccf17de2008-07-04 15:14:35 +00001912 drd/scripts/download-and-build-splash2
1913 drd/tests/Makefile
njndbebecc2009-07-14 01:39:54 +00001914 exp-bbv/Makefile
njndbebecc2009-07-14 01:39:54 +00001915 exp-bbv/tests/Makefile
1916 exp-bbv/tests/x86/Makefile
1917 exp-bbv/tests/x86-linux/Makefile
1918 exp-bbv/tests/amd64-linux/Makefile
1919 exp-bbv/tests/ppc32-linux/Makefile
vince226e0782010-01-06 15:22:11 +00001920 exp-bbv/tests/arm-linux/Makefile
njn8b68b642009-06-24 00:37:09 +00001921])
sewardjd3645802010-06-13 22:13:58 +00001922AC_CONFIG_FILES([coregrind/link_tool_exe_linux],
1923 [chmod +x coregrind/link_tool_exe_linux])
1924AC_CONFIG_FILES([coregrind/link_tool_exe_darwin],
1925 [chmod +x coregrind/link_tool_exe_darwin])
1926AC_CONFIG_FILES([coregrind/link_tool_exe_aix5],
1927 [chmod +x coregrind/link_tool_exe_aix5])
njn8b68b642009-06-24 00:37:09 +00001928AC_OUTPUT
gobry3b777892002-04-04 09:18:39 +00001929
1930cat<<EOF
1931
njn311303f2009-02-06 03:46:50 +00001932 Maximum build arch: ${ARCH_MAX}
1933 Primary build arch: ${VGCONF_ARCH_PRI}
njn3f8a6e92009-06-02 00:20:47 +00001934 Secondary build arch: ${VGCONF_ARCH_SEC}
njn311303f2009-02-06 03:46:50 +00001935 Build OS: ${VGCONF_OS}
njn7fd6d382009-01-22 21:56:32 +00001936 Primary build target: ${VGCONF_PLATFORM_PRI_CAPS}
1937 Secondary build target: ${VGCONF_PLATFORM_SEC_CAPS}
sewardje95d94f2008-09-19 09:02:19 +00001938 Default supp files: ${DEFAULT_SUPP}
gobry3b777892002-04-04 09:18:39 +00001939
gobry3b777892002-04-04 09:18:39 +00001940EOF