blob: 62e18373497c7d893291879b9b3ba5aac59674ca [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
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
njn7fd6d382009-01-22 21:56:32 +0000587# Similarly, set up VGCONF_OF_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])
930], [
931ac_have_altivec=no
932AC_MSG_RESULT([no])
933])
934CFLAGS=$safe_CFLAGS
935
936AM_CONDITIONAL([HAS_ALTIVEC], [test x$ac_have_altivec = xyes])
937AM_CONDITIONAL([HAVE_ALTIVEC_H], [test x$ac_have_altivec = xyes])
938
939
bart36dd85a2009-04-26 07:11:48 +0000940# Check for pthread_create@GLIBC2.0
941AC_MSG_CHECKING([for pthread_create@GLIBC2.0()])
942
bart16e1c5a2009-04-26 07:38:53 +0000943safe_CFLAGS=$CFLAGS
944CFLAGS="-lpthread"
bart36dd85a2009-04-26 07:11:48 +0000945AC_TRY_LINK(
946[
947extern int pthread_create_glibc_2_0(void*, const void*,
948 void *(*)(void*), void*);
949__asm__(".symver pthread_create_glibc_2_0, pthread_create@GLIBC_2.0");
950], [
bart276ed3a2009-05-10 15:41:45 +0000951#ifdef __powerpc__
952/*
953 * Apparently on PowerPC linking this program succeeds and generates an
954 * executable with the undefined symbol pthread_create@GLIBC_2.0.
955 */
956#error This test does not work properly on PowerPC.
957#else
bart16e1c5a2009-04-26 07:38:53 +0000958 pthread_create_glibc_2_0(0, 0, 0, 0);
bart276ed3a2009-05-10 15:41:45 +0000959#endif
bart16e1c5a2009-04-26 07:38:53 +0000960 return 0;
bart36dd85a2009-04-26 07:11:48 +0000961],
962[
963ac_have_pthread_create_glibc_2_0=yes
964AC_MSG_RESULT([yes])
965AC_DEFINE([HAVE_PTHREAD_CREATE_GLIBC_2_0], 1,
966 [Define to 1 if you have the `pthread_create@glibc2.0' function.])
967], [
968ac_have_pthread_create_glibc_2_0=no
969AC_MSG_RESULT([no])
970])
bart16e1c5a2009-04-26 07:38:53 +0000971CFLAGS=$safe_CFLAGS
bart36dd85a2009-04-26 07:11:48 +0000972
973AM_CONDITIONAL(HAVE_PTHREAD_CREATE_GLIBC_2_0,
bart24f53902009-04-26 11:29:02 +0000974 test x$ac_have_pthread_create_glibc_2_0 = xyes)
bart36dd85a2009-04-26 07:11:48 +0000975
976
barta50aa8a2008-04-27 06:06:57 +0000977# Check for eventfd_t, eventfd() and eventfd_read()
978AC_MSG_CHECKING([for eventfd()])
979
980AC_TRY_LINK(
981[
982#include <sys/eventfd.h>
983], [
984 eventfd_t ev;
985 int fd;
986
987 fd = eventfd(5, 0);
988 eventfd_read(fd, &ev);
989 return 0;
990],
991[
992AC_MSG_RESULT([yes])
993AC_DEFINE([HAVE_EVENTFD], 1,
994 [Define to 1 if you have the `eventfd' function.])
995AC_DEFINE([HAVE_EVENTFD_READ], 1,
996 [Define to 1 if you have the `eventfd_read' function.])
997], [
998AC_MSG_RESULT([no])
999])
1000
1001
njn7fd6d382009-01-22 21:56:32 +00001002#----------------------------------------------------------------------------
1003# Checking for supported compiler flags.
1004#----------------------------------------------------------------------------
1005
sewardj535c50f2005-06-04 23:14:53 +00001006# does this compiler support -m32 ?
1007AC_MSG_CHECKING([if gcc accepts -m32])
1008
1009safe_CFLAGS=$CFLAGS
1010CFLAGS="-m32"
1011
1012AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001013 return 0;
sewardj535c50f2005-06-04 23:14:53 +00001014],
1015[
1016FLAG_M32="-m32"
1017AC_MSG_RESULT([yes])
1018], [
1019FLAG_M32=""
1020AC_MSG_RESULT([no])
1021])
1022CFLAGS=$safe_CFLAGS
1023
1024AC_SUBST(FLAG_M32)
1025
1026
sewardj03d86f22006-10-17 00:57:24 +00001027# does this compiler support -maix32 ?
1028AC_MSG_CHECKING([if gcc accepts -maix32])
1029
1030safe_CFLAGS=$CFLAGS
1031CFLAGS="-maix32"
1032
1033AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001034 return 0;
sewardj03d86f22006-10-17 00:57:24 +00001035],
1036[
1037FLAG_MAIX32="-maix32"
1038AC_MSG_RESULT([yes])
1039], [
1040FLAG_MAIX32=""
1041AC_MSG_RESULT([no])
1042])
1043CFLAGS=$safe_CFLAGS
1044
1045AC_SUBST(FLAG_MAIX32)
1046
1047
sewardj01262142006-01-04 01:20:28 +00001048# does this compiler support -m64 ?
1049AC_MSG_CHECKING([if gcc accepts -m64])
1050
1051safe_CFLAGS=$CFLAGS
1052CFLAGS="-m64"
1053
1054AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001055 return 0;
sewardj01262142006-01-04 01:20:28 +00001056],
1057[
1058FLAG_M64="-m64"
1059AC_MSG_RESULT([yes])
1060], [
1061FLAG_M64=""
1062AC_MSG_RESULT([no])
1063])
1064CFLAGS=$safe_CFLAGS
1065
1066AC_SUBST(FLAG_M64)
1067
1068
sewardj03d86f22006-10-17 00:57:24 +00001069# does this compiler support -maix64 ?
1070AC_MSG_CHECKING([if gcc accepts -maix64])
1071
1072safe_CFLAGS=$CFLAGS
1073CFLAGS="-maix64"
1074
1075AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001076 return 0;
sewardj03d86f22006-10-17 00:57:24 +00001077],
1078[
1079FLAG_MAIX64="-maix64"
1080AC_MSG_RESULT([yes])
1081], [
1082FLAG_MAIX64=""
1083AC_MSG_RESULT([no])
1084])
1085CFLAGS=$safe_CFLAGS
1086
1087AC_SUBST(FLAG_MAIX64)
1088
1089
sewardj67f1fcc2005-07-03 10:41:02 +00001090# does this compiler support -mmmx ?
1091AC_MSG_CHECKING([if gcc accepts -mmmx])
1092
1093safe_CFLAGS=$CFLAGS
1094CFLAGS="-mmmx"
1095
1096AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001097 return 0;
sewardj67f1fcc2005-07-03 10:41:02 +00001098],
1099[
1100FLAG_MMMX="-mmmx"
1101AC_MSG_RESULT([yes])
1102], [
1103FLAG_MMMX=""
1104AC_MSG_RESULT([no])
1105])
1106CFLAGS=$safe_CFLAGS
1107
1108AC_SUBST(FLAG_MMMX)
1109
1110
1111# does this compiler support -msse ?
1112AC_MSG_CHECKING([if gcc accepts -msse])
1113
1114safe_CFLAGS=$CFLAGS
1115CFLAGS="-msse"
1116
1117AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001118 return 0;
sewardj67f1fcc2005-07-03 10:41:02 +00001119],
1120[
1121FLAG_MSSE="-msse"
1122AC_MSG_RESULT([yes])
1123], [
1124FLAG_MSSE=""
1125AC_MSG_RESULT([no])
1126])
1127CFLAGS=$safe_CFLAGS
1128
1129AC_SUBST(FLAG_MSSE)
1130
1131
sewardj5b754b42002-06-03 22:53:35 +00001132# does this compiler support -mpreferred-stack-boundary=2 ?
1133AC_MSG_CHECKING([if gcc accepts -mpreferred-stack-boundary])
1134
daywalker3664f562003-10-17 13:43:46 +00001135safe_CFLAGS=$CFLAGS
sewardj5b754b42002-06-03 22:53:35 +00001136CFLAGS="-mpreferred-stack-boundary=2"
1137
1138AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001139 return 0;
sewardj5b754b42002-06-03 22:53:35 +00001140],
1141[
1142PREFERRED_STACK_BOUNDARY="-mpreferred-stack-boundary=2"
daywalker3664f562003-10-17 13:43:46 +00001143AC_MSG_RESULT([yes])
sewardj5b754b42002-06-03 22:53:35 +00001144], [
1145PREFERRED_STACK_BOUNDARY=""
1146AC_MSG_RESULT([no])
1147])
daywalker3664f562003-10-17 13:43:46 +00001148CFLAGS=$safe_CFLAGS
sewardj5b754b42002-06-03 22:53:35 +00001149
1150AC_SUBST(PREFERRED_STACK_BOUNDARY)
1151
sewardj535c50f2005-06-04 23:14:53 +00001152
sewardjb5f6f512005-03-10 23:59:00 +00001153# does this compiler support -Wno-pointer-sign ?
bart56730cd2008-05-11 06:41:46 +00001154AC_MSG_CHECKING([if gcc accepts -Wno-pointer-sign])
sewardjb5f6f512005-03-10 23:59:00 +00001155
1156safe_CFLAGS=$CFLAGS
1157CFLAGS="-Wno-pointer-sign"
1158
1159AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001160 return 0;
sewardjb5f6f512005-03-10 23:59:00 +00001161],
1162[
1163no_pointer_sign=yes
1164AC_MSG_RESULT([yes])
1165], [
1166no_pointer_sign=no
1167AC_MSG_RESULT([no])
1168])
1169CFLAGS=$safe_CFLAGS
1170
1171if test x$no_pointer_sign = xyes; then
1172 CFLAGS="$CFLAGS -Wno-pointer-sign"
1173fi
1174
sewardj535c50f2005-06-04 23:14:53 +00001175
barte026bd22009-07-04 12:17:07 +00001176# does this compiler support -Wno-empty-body ?
1177
1178AC_MSG_CHECKING([if gcc accepts -Wno-empty-body])
1179
1180safe_CFLAGS=$CFLAGS
1181CFLAGS="-Wno-empty-body"
1182
1183AC_TRY_COMPILE(
1184[ ],
1185[
1186 return 0;
1187],
1188[
1189AC_SUBST([FLAG_W_NO_EMPTY_BODY], [-Wno-empty-body])
1190AC_MSG_RESULT([yes])
1191],
1192[
1193AC_SUBST([FLAG_W_NO_EMPTY_BODY], [])
1194AC_MSG_RESULT([no])
1195])
1196CFLAGS=$safe_CFLAGS
1197
1198
bart9d865fa2008-06-23 12:11:49 +00001199# does this compiler support -Wno-format-zero-length ?
1200
1201AC_MSG_CHECKING([if gcc accepts -Wno-format-zero-length])
1202
1203safe_CFLAGS=$CFLAGS
1204CFLAGS="-Wno-format-zero-length"
1205
1206AC_TRY_COMPILE(
1207[ ],
1208[
1209 return 0;
1210],
1211[
1212AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [-Wno-format-zero-length])
1213AC_MSG_RESULT([yes])
1214],
1215[
1216AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [])
1217AC_MSG_RESULT([no])
1218])
1219CFLAGS=$safe_CFLAGS
1220
1221
bartbf9b85c2009-08-12 12:55:56 +00001222# does this compiler support -Wno-uninitialized ?
1223
1224AC_MSG_CHECKING([if gcc accepts -Wno-uninitialized])
1225
1226safe_CFLAGS=$CFLAGS
1227CFLAGS="-Wno-uninitialized"
1228
1229AC_TRY_COMPILE(
1230[ ],
1231[
1232 return 0;
1233],
1234[
1235AC_SUBST([FLAG_W_NO_UNINITIALIZED], [-Wno-uninitialized])
1236AC_MSG_RESULT([yes])
1237],
1238[
1239AC_SUBST([FLAG_W_NO_UNINITIALIZED], [])
1240AC_MSG_RESULT([no])
1241])
1242CFLAGS=$safe_CFLAGS
1243
1244
bart56730cd2008-05-11 06:41:46 +00001245# does this compiler support -Wextra or the older -W ?
1246
1247AC_MSG_CHECKING([if gcc accepts -Wextra or -W])
1248
1249safe_CFLAGS=$CFLAGS
1250CFLAGS="-Wextra"
1251
1252AC_TRY_COMPILE(
1253[ ],
1254[
1255 return 0;
1256],
1257[
1258AC_SUBST([FLAG_W_EXTRA], [-Wextra])
1259AC_MSG_RESULT([-Wextra])
1260], [
1261 CFLAGS="-W"
1262 AC_TRY_COMPILE(
1263 [ ],
1264 [
1265 return 0;
1266 ],
1267 [
1268 AC_SUBST([FLAG_W_EXTRA], [-W])
1269 AC_MSG_RESULT([-W])
1270 ], [
1271 AC_SUBST([FLAG_W_EXTRA], [])
1272 AC_MSG_RESULT([not supported])
1273 ])
1274])
1275CFLAGS=$safe_CFLAGS
1276
1277
sewardja72c26d2007-05-01 13:44:08 +00001278# does this compiler support -fno-stack-protector ?
bart56730cd2008-05-11 06:41:46 +00001279AC_MSG_CHECKING([if gcc accepts -fno-stack-protector])
sewardja72c26d2007-05-01 13:44:08 +00001280
1281safe_CFLAGS=$CFLAGS
1282CFLAGS="-fno-stack-protector"
1283
1284AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001285 return 0;
sewardja72c26d2007-05-01 13:44:08 +00001286],
1287[
1288no_stack_protector=yes
1289FLAG_FNO_STACK_PROTECTOR="-fno-stack-protector"
1290AC_MSG_RESULT([yes])
1291], [
1292no_stack_protector=no
1293FLAG_FNO_STACK_PROTECTOR=""
1294AC_MSG_RESULT([no])
1295])
1296CFLAGS=$safe_CFLAGS
1297
1298AC_SUBST(FLAG_FNO_STACK_PROTECTOR)
1299
1300if test x$no_stack_protector = xyes; then
1301 CFLAGS="$CFLAGS -fno-stack-protector"
1302fi
1303
1304
bart56730cd2008-05-11 06:41:46 +00001305# does this compiler support --param inline-unit-growth=... ?
1306
1307AC_MSG_CHECKING([if gcc accepts --param inline-unit-growth])
1308
1309safe_CFLAGS=$CFLAGS
1310CFLAGS="--param inline-unit-growth=900"
1311
1312AC_TRY_COMPILE(
1313[ ],
1314[
1315 return 0;
1316],
1317[
1318AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH],
1319 ["--param inline-unit-growth=900"])
1320AC_MSG_RESULT([yes])
1321], [
1322AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH], [""])
1323AC_MSG_RESULT([no])
1324])
1325CFLAGS=$safe_CFLAGS
1326
1327
sewardjd3645802010-06-13 22:13:58 +00001328# does the linker support -Wl,--build-id=none ? Note, it's
1329# important that we test indirectly via whichever C compiler
1330# is selected, rather than testing /usr/bin/ld or whatever
1331# directly.
bart699fbac2010-06-08 18:23:59 +00001332
sewardjd3645802010-06-13 22:13:58 +00001333AC_MSG_CHECKING([if the linker accepts -Wl,--build-id=none])
bart699fbac2010-06-08 18:23:59 +00001334
1335safe_CFLAGS=$CFLAGS
1336CFLAGS="-Wl,--build-id=none"
1337
bart8508c752010-06-10 06:26:21 +00001338AC_LINK_IFELSE(
1339[AC_LANG_PROGRAM([ ], [return 0;])],
bart699fbac2010-06-08 18:23:59 +00001340[
1341 AC_SUBST([FLAG_NO_BUILD_ID], ["-Wl,--build-id=none"])
1342 AC_MSG_RESULT([yes])
1343], [
1344 AC_SUBST([FLAG_NO_BUILD_ID], [""])
1345 AC_MSG_RESULT([no])
1346])
1347CFLAGS=$safe_CFLAGS
1348
1349
sewardj00f1e622006-03-12 16:47:10 +00001350# does the ppc assembler support "mtocrf" et al?
1351AC_MSG_CHECKING([if ppc32/64 as supports mtocrf/mfocrf])
1352
1353AC_TRY_COMPILE(, [
sewardjdd4cbe12006-03-12 17:27:44 +00001354__asm__ __volatile__("mtocrf 4,0");
1355__asm__ __volatile__("mfocrf 0,4");
sewardj00f1e622006-03-12 16:47:10 +00001356],
1357[
1358ac_have_as_ppc_mftocrf=yes
1359AC_MSG_RESULT([yes])
1360], [
1361ac_have_as_ppc_mftocrf=no
1362AC_MSG_RESULT([no])
1363])
1364if test x$ac_have_as_ppc_mftocrf = xyes ; then
1365 AC_DEFINE(HAVE_AS_PPC_MFTOCRF, 1, [Define to 1 if as supports mtocrf/mfocrf.])
1366fi
1367
1368
sewardjf0aabf82007-03-22 00:24:21 +00001369# does the x86/amd64 assembler understand SSE3 instructions?
sewardjfa18a262007-03-22 12:13:13 +00001370# Note, this doesn't generate a C-level symbol. It generates a
1371# automake-level symbol (BUILD_SSE3_TESTS), used in test Makefile.am's
sewardjf0aabf82007-03-22 00:24:21 +00001372AC_MSG_CHECKING([if x86/amd64 assembler speaks SSE3])
1373
1374AC_TRY_COMPILE(, [
1375 do { long long int x;
1376 __asm__ __volatile__("fisttpq (%0)" : :"r"(&x) ); }
1377 while (0)
1378],
1379[
1380ac_have_as_sse3=yes
1381AC_MSG_RESULT([yes])
1382], [
1383ac_have_as_sse3=no
1384AC_MSG_RESULT([no])
1385])
sewardjfa18a262007-03-22 12:13:13 +00001386
1387AM_CONDITIONAL(BUILD_SSE3_TESTS, test x$ac_have_as_sse3 = xyes)
sewardjf0aabf82007-03-22 00:24:21 +00001388
1389
sewardj6d6da5b2008-02-09 12:07:40 +00001390# Ditto for SSSE3 instructions (note extra S)
1391# Note, this doesn't generate a C-level symbol. It generates a
1392# automake-level symbol (BUILD_SSSE3_TESTS), used in test Makefile.am's
1393AC_MSG_CHECKING([if x86/amd64 assembler speaks SSSE3])
1394
1395AC_TRY_COMPILE(, [
1396 do { long long int x;
1397 __asm__ __volatile__(
1398 "pabsb (%0),%%xmm7" : : "r"(&x) : "xmm7" ); }
1399 while (0)
1400],
1401[
1402ac_have_as_ssse3=yes
1403AC_MSG_RESULT([yes])
1404], [
1405ac_have_as_ssse3=no
1406AC_MSG_RESULT([no])
1407])
1408
1409AM_CONDITIONAL(BUILD_SSSE3_TESTS, test x$ac_have_as_ssse3 = xyes)
1410
1411
sewardjb5f6f512005-03-10 23:59:00 +00001412# Check for TLS support in the compiler and linker
bartca9f2ad2008-06-02 07:14:20 +00001413if test "x${cross_compiling}" = "xno"; then
1414# Native compilation: check whether running a program using TLS succeeds.
1415# Linking only is not sufficient -- e.g. on Red Hat 7.3 linking TLS programs
1416# succeeds but running programs using TLS fails.
1417AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1418 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1419 [vg_cv_tls=$enableval],
1420 [AC_RUN_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
1421 [[return foo;]])],
1422 [vg_cv_tls=yes],
1423 [vg_cv_tls=no])])])
1424else
1425# Cross-compiling: check whether linking a program using TLS succeeds.
sewardjb5f6f512005-03-10 23:59:00 +00001426AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1427 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1428 [vg_cv_tls=$enableval],
bartcddeaf52008-05-25 15:58:11 +00001429 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
sewardjb5f6f512005-03-10 23:59:00 +00001430 [[return foo;]])],
1431 [vg_cv_tls=yes],
1432 [vg_cv_tls=no])])])
bartca9f2ad2008-06-02 07:14:20 +00001433fi
sewardjb5f6f512005-03-10 23:59:00 +00001434
1435if test "$vg_cv_tls" = yes; then
1436AC_DEFINE([HAVE_TLS], 1, [can use __thread to define thread-local variables])
1437fi
sewardj5b754b42002-06-03 22:53:35 +00001438
sewardj535c50f2005-06-04 23:14:53 +00001439
njn7fd6d382009-01-22 21:56:32 +00001440#----------------------------------------------------------------------------
bart62f54e42008-07-28 11:35:10 +00001441# Checks for C header files.
njn7fd6d382009-01-22 21:56:32 +00001442#----------------------------------------------------------------------------
1443
sewardjde4a1d02002-03-22 01:27:54 +00001444AC_HEADER_STDC
bartf5ceec82008-04-26 07:45:10 +00001445AC_CHECK_HEADERS([ \
bart1f2b1432009-01-16 12:06:54 +00001446 asm/unistd.h \
bartf5ceec82008-04-26 07:45:10 +00001447 endian.h \
1448 mqueue.h \
1449 sys/endian.h \
1450 sys/epoll.h \
1451 sys/eventfd.h \
bartce48fa92008-04-26 10:59:46 +00001452 sys/klog.h \
bartf5ceec82008-04-26 07:45:10 +00001453 sys/poll.h \
bart71bad292008-04-27 11:43:23 +00001454 sys/signal.h \
bartf5ceec82008-04-26 07:45:10 +00001455 sys/signalfd.h \
bart71bad292008-04-27 11:43:23 +00001456 sys/syscall.h \
1457 sys/time.h \
1458 sys/types.h \
bartf5ceec82008-04-26 07:45:10 +00001459 ])
sewardjde4a1d02002-03-22 01:27:54 +00001460
njn7fd6d382009-01-22 21:56:32 +00001461#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001462# Checks for typedefs, structures, and compiler characteristics.
njn7fd6d382009-01-22 21:56:32 +00001463#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001464AC_TYPE_UID_T
1465AC_TYPE_OFF_T
1466AC_TYPE_SIZE_T
1467AC_HEADER_TIME
1468
sewardj535c50f2005-06-04 23:14:53 +00001469
njn7fd6d382009-01-22 21:56:32 +00001470#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001471# Checks for library functions.
njn7fd6d382009-01-22 21:56:32 +00001472#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001473AC_FUNC_MEMCMP
1474AC_FUNC_MMAP
1475AC_TYPE_SIGNAL
1476
bart71bad292008-04-27 11:43:23 +00001477AC_CHECK_LIB([rt], [clock_gettime])
bart41ac62a2008-07-07 16:58:03 +00001478
bartf5ceec82008-04-26 07:45:10 +00001479AC_CHECK_FUNCS([ \
bart71bad292008-04-27 11:43:23 +00001480 clock_gettime\
bartf5ceec82008-04-26 07:45:10 +00001481 epoll_create \
1482 epoll_pwait \
bartf5ceec82008-04-26 07:45:10 +00001483 floor \
bartce48fa92008-04-26 10:59:46 +00001484 klogctl \
bartf5ceec82008-04-26 07:45:10 +00001485 mallinfo \
1486 memchr \
1487 memset \
1488 mkdir \
njnf76d27a2009-05-28 01:53:07 +00001489 mremap \
bartf5ceec82008-04-26 07:45:10 +00001490 ppoll \
bart6d45e922009-01-20 13:45:38 +00001491 pthread_barrier_init \
1492 pthread_condattr_setclock \
1493 pthread_mutex_timedlock \
1494 pthread_rwlock_timedrdlock \
1495 pthread_rwlock_timedwrlock \
1496 pthread_spin_lock \
barta72a27b2010-04-29 06:22:17 +00001497 pthread_yield \
bartd1f724c2009-08-26 18:11:18 +00001498 readlinkat \
bartf5ceec82008-04-26 07:45:10 +00001499 semtimedop \
1500 signalfd \
njn6cc22472009-03-16 03:46:48 +00001501 sigwaitinfo \
bartf5ceec82008-04-26 07:45:10 +00001502 strchr \
1503 strdup \
1504 strpbrk \
1505 strrchr \
1506 strstr \
barta72a27b2010-04-29 06:22:17 +00001507 syscall \
bartf5ceec82008-04-26 07:45:10 +00001508 timerfd \
1509 utimensat \
1510 ])
sewardjde4a1d02002-03-22 01:27:54 +00001511
bart623eec32008-07-29 17:54:49 +00001512# AC_CHECK_LIB adds any library found to the variable LIBS, and links these
1513# libraries with any shared object and/or executable. This is NOT what we
1514# want for e.g. vgpreload_core-x86-linux.so
1515LIBS=""
sewardj80637752006-03-02 13:48:21 +00001516
bart6d45e922009-01-20 13:45:38 +00001517AM_CONDITIONAL([HAVE_PTHREAD_BARRIER],
1518 [test x$ac_cv_func_pthread_barrier_init = xyes])
bart2eaa8f22009-01-20 14:01:16 +00001519AM_CONDITIONAL([HAVE_PTHREAD_MUTEX_TIMEDLOCK],
1520 [test x$ac_cv_func_pthread_mutex_timedlock = xyes])
bart6d45e922009-01-20 13:45:38 +00001521AM_CONDITIONAL([HAVE_PTHREAD_SPINLOCK],
1522 [test x$ac_cv_func_pthread_spin_lock = xyes])
1523
njn7fd6d382009-01-22 21:56:32 +00001524
1525#----------------------------------------------------------------------------
1526# MPI checks
1527#----------------------------------------------------------------------------
sewardj03d86f22006-10-17 00:57:24 +00001528# Do we have a useable MPI setup on the primary and/or secondary targets?
1529# On Linux, by default, assumes mpicc and -m32/-m64
1530# On AIX, by default, assumes mpxlc and -q32/-q64
sewardje9fa5062006-03-12 18:29:18 +00001531# Note: this is a kludge in that it assumes the specified mpicc
sewardj03d86f22006-10-17 00:57:24 +00001532# understands -m32/-m64/-q32/-q64 regardless of what is specified using
1533# --with-mpicc=.
sewardj0ad46092006-03-02 17:09:16 +00001534MPI_CC="mpicc"
njn7fd6d382009-01-22 21:56:32 +00001535if test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
1536 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001537 MPI_CC="mpxlc"
1538fi
1539
sewardje9fa5062006-03-12 18:29:18 +00001540mflag_primary=
njn7fd6d382009-01-22 21:56:32 +00001541if test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
1542 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX ; then
sewardje9fa5062006-03-12 18:29:18 +00001543 mflag_primary=$FLAG_M32
njn7fd6d382009-01-22 21:56:32 +00001544elif test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \
1545 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX ; then
sewardje9fa5062006-03-12 18:29:18 +00001546 mflag_primary=$FLAG_M64
njn7fd6d382009-01-22 21:56:32 +00001547elif test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001548 mflag_primary=-q32
njn7fd6d382009-01-22 21:56:32 +00001549elif test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001550 mflag_primary=-q64
sewardje9fa5062006-03-12 18:29:18 +00001551fi
1552
sewardj03d86f22006-10-17 00:57:24 +00001553mflag_secondary=
njn7fd6d382009-01-22 21:56:32 +00001554if test x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX \
1555 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX ; then
sewardj03d86f22006-10-17 00:57:24 +00001556 mflag_secondary=$FLAG_M32
njn7fd6d382009-01-22 21:56:32 +00001557elif test x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001558 mflag_secondary=-q32
1559fi
1560
1561
sewardj0ad46092006-03-02 17:09:16 +00001562AC_ARG_WITH(mpicc,
sewardjb70a6132006-05-27 21:14:09 +00001563 [ --with-mpicc= Specify name of MPI2-ised C compiler],
sewardj0ad46092006-03-02 17:09:16 +00001564 MPI_CC=$withval
1565)
sewardj03d86f22006-10-17 00:57:24 +00001566AC_SUBST(MPI_CC)
1567
1568## See if MPI_CC works for the primary target
1569##
1570AC_MSG_CHECKING([primary target for usable MPI2-compliant C compiler and mpi.h])
sewardj0ad46092006-03-02 17:09:16 +00001571saved_CC=$CC
sewardjde4f3842006-03-09 02:41:41 +00001572saved_CFLAGS=$CFLAGS
sewardj0ad46092006-03-02 17:09:16 +00001573CC=$MPI_CC
sewardje9fa5062006-03-12 18:29:18 +00001574CFLAGS=$mflag_primary
sewardjd3fcc642006-03-09 02:49:56 +00001575AC_TRY_LINK([
sewardj1a85e602006-03-08 15:26:10 +00001576#include <mpi.h>
1577#include <stdio.h>
sewardjde4f3842006-03-09 02:41:41 +00001578],[
1579 int r = MPI_Init(NULL,NULL);
1580 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1581 return r;
1582], [
sewardj03d86f22006-10-17 00:57:24 +00001583ac_have_mpi2_pri=yes
sewardj1a85e602006-03-08 15:26:10 +00001584AC_MSG_RESULT([yes, $MPI_CC])
sewardj80637752006-03-02 13:48:21 +00001585], [
sewardj03d86f22006-10-17 00:57:24 +00001586ac_have_mpi2_pri=no
sewardj80637752006-03-02 13:48:21 +00001587AC_MSG_RESULT([no])
1588])
sewardj0ad46092006-03-02 17:09:16 +00001589CC=$saved_CC
sewardjde4f3842006-03-09 02:41:41 +00001590CFLAGS=$saved_CFLAGS
sewardj03d86f22006-10-17 00:57:24 +00001591AM_CONDITIONAL(BUILD_MPIWRAP_PRI, test x$ac_have_mpi2_pri = xyes)
sewardj80637752006-03-02 13:48:21 +00001592
sewardj03d86f22006-10-17 00:57:24 +00001593## See if MPI_CC works for the secondary target. Complication: what if
1594## there is no secondary target? We need this to then fail.
1595## Kludge this by making MPI_CC something which will surely fail in
1596## such a case.
1597##
1598AC_MSG_CHECKING([secondary target for usable MPI2-compliant C compiler and mpi.h])
1599saved_CC=$CC
1600saved_CFLAGS=$CFLAGS
njn7fd6d382009-01-22 21:56:32 +00001601if test x$VGCONF_PLATFORM_SEC_CAPS = x ; then
sewardj03d86f22006-10-17 00:57:24 +00001602 CC="$MPI_CC this will surely fail"
1603else
1604 CC=$MPI_CC
1605fi
1606CFLAGS=$mflag_secondary
1607AC_TRY_LINK([
1608#include <mpi.h>
1609#include <stdio.h>
1610],[
1611 int r = MPI_Init(NULL,NULL);
1612 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1613 return r;
1614], [
1615ac_have_mpi2_sec=yes
1616AC_MSG_RESULT([yes, $MPI_CC])
1617], [
1618ac_have_mpi2_sec=no
1619AC_MSG_RESULT([no])
1620])
1621CC=$saved_CC
1622CFLAGS=$saved_CFLAGS
1623AM_CONDITIONAL(BUILD_MPIWRAP_SEC, test x$ac_have_mpi2_sec = xyes)
sewardj80637752006-03-02 13:48:21 +00001624
1625
njn7fd6d382009-01-22 21:56:32 +00001626#----------------------------------------------------------------------------
1627# Other library checks
1628#----------------------------------------------------------------------------
sewardj493c4ef2008-12-13 16:45:19 +00001629# There now follow some tests for QtCore, Boost, and OpenMP. These
1630# tests are present because Drd has some regression tests that use
1631# these packages. All regression test programs all compiled only
1632# for the primary target. And so it is important that the configure
1633# checks that follow, use the correct -m32 or -m64 flag for the
1634# primary target (called $mflag_primary). Otherwise, we can end up
1635# in a situation (eg) where, on amd64-linux, the test for Boost checks
1636# for usable 64-bit Boost facilities, but because we are doing a 32-bit
1637# only build (meaning, the primary target is x86-linux), the build
1638# of the regtest programs that use Boost fails, because they are
1639# build as 32-bit (IN THIS EXAMPLE).
1640#
1641# Hence: ALWAYS USE $mflag_primary FOR CONFIGURE TESTS FOR FACILITIES
1642# NEEDED BY THE REGRESSION TEST PROGRAMS.
1643
1644
bart21d3cfc2008-08-02 09:08:17 +00001645# The test below verifies whether the QtCore package been installed.
1646# This test works as follows:
1647# - If pkg-config was not installed at the time autogen.sh was run,
1648# the definition of the PKG_CHECK_EXISTS() macro will not be found by
1649# autogen.sh. Augogen.sh will generate a configure script that prints
1650# a warning about pkg-config and proceeds as if Qt4 has not been installed.
1651# - If pkg-config was installed at the time autogen.sh was run,
1652# the generated configure script will try to detect the presence of the
1653# Qt4 QtCore library by looking up compile and linker flags in the file
1654# called QtCore.pc.
1655# - pkg-config settings can be overridden via the configure variables
1656# QTCORE_CFLAGS and QTCORE_LIBS (added by the pkg-config m4 macro's to the
1657# configure script -- see also ./configure --help).
1658# - The QTCORE_CFLAGS and QTCORE_LIBS configure variables can be used even if
1659# the pkg-config executable is not present on the system on which the
1660# configure script is run.
bart41ac62a2008-07-07 16:58:03 +00001661
bart21d3cfc2008-08-02 09:08:17 +00001662ifdef(
1663 [PKG_CHECK_EXISTS],
1664 [PKG_CHECK_EXISTS(
1665 [QtCore],
1666 [
1667 PKG_CHECK_MODULES([QTCORE], [QtCore])
bart11fbd892008-09-21 15:00:58 +00001668 # Paranoia: don't trust the result reported by pkg-config, but when
1669 # pkg-config reports that QtCore has been found, verify whether linking
1670 # programs with QtCore succeeds.
1671 AC_LANG(C++)
1672 safe_CXXFLAGS="${CXXFLAGS}"
sewardj493c4ef2008-12-13 16:45:19 +00001673 CXXFLAGS="${QTCORE_CFLAGS} ${QTCORE_LIBS} $mflag_primary"
bart11fbd892008-09-21 15:00:58 +00001674 AC_TRY_LINK(
1675 [#include <QMutex>],
1676 [QMutex Mutex;],
1677 [ac_have_qtcore=yes],
1678 [
1679 AC_MSG_WARN([Although pkg-config detected Qt4, linking Qt4 programs fails. Skipping Qt4.])
1680 ac_have_qtcore=no
1681 ]
1682 )
1683 CXXFLAGS="${safe_CXXFLAGS}"
bart21d3cfc2008-08-02 09:08:17 +00001684 ],
1685 [
1686 ac_have_qtcore=no
1687 ]
1688 )
1689 ],
1690 AC_MSG_WARN([pkg-config has not been installed or is too old.])
1691 AC_MSG_WARN([Detection of Qt4 will be skipped.])
1692 [ac_have_qtcore=no]
1693)
bart41ac62a2008-07-07 16:58:03 +00001694
1695AM_CONDITIONAL([HAVE_QTCORE], [test x$ac_have_qtcore = xyes])
1696
1697
bart62f54e42008-07-28 11:35:10 +00001698# Test for QMutex::tryLock(int), which has been introduced in Qt 4.3.
1699# See also http://doc.trolltech.com/4.3/qmutex.html.
1700if test x$ac_have_qtcore = xyes; then
1701 AC_MSG_CHECKING([for Qt4 QMutex::tryLock(int)])
1702 AC_LANG(C++)
bart21d3cfc2008-08-02 09:08:17 +00001703 safe_CXXFLAGS="${CXXFLAGS}"
sewardj493c4ef2008-12-13 16:45:19 +00001704 CXXFLAGS="${QTCORE_CFLAGS} $mflag_primary"
bart62f54e42008-07-28 11:35:10 +00001705 AC_TRY_COMPILE([
1706 #include <QtCore/QMutex>
1707 ],
1708 [
1709 QMutex M;
1710 M.tryLock(1);
1711 M.unlock();
1712 return 0;
1713 ],
1714 [
1715 AC_MSG_RESULT([yes])
1716 AC_DEFINE([HAVE_QTCORE_QMUTEX_TRYLOCK_INT], [1], [Define to 1 if the installed version of Qt4 provides QMutex::tryLock(int).])
1717 ],
1718 [
1719 AC_MSG_RESULT([no])
1720 ])
bart21d3cfc2008-08-02 09:08:17 +00001721 CXXFLAGS="${safe_CXXFLAGS}"
bart62f54e42008-07-28 11:35:10 +00001722 AC_LANG(C)
1723fi
1724
1725
bart4f43e002009-11-09 16:07:43 +00001726# Test for QAtomicInt, which has been introduced in Qt 4.4.
1727# See also http://doc.trolltech.com/4.4/qatomicint.html.
1728if test x$ac_have_qtcore = xyes; then
bart9da08ba2009-11-11 19:22:05 +00001729 AC_MSG_CHECKING([for Qt4 QAtomicInt])
bart4f43e002009-11-09 16:07:43 +00001730 AC_LANG(C++)
1731 safe_CXXFLAGS="${CXXFLAGS}"
1732 CXXFLAGS="${QTCORE_CFLAGS} $mflag_primary"
1733 AC_TRY_COMPILE([
1734 #include <QtCore/QAtomicInt>
1735 ],
1736 [
1737 QAtomicInt I;
1738 I.testAndSetOrdered(0, 1);
1739 return 0;
1740 ],
1741 [
1742 ac_have_qtcore_qatomicint=yes
1743 AC_MSG_RESULT([yes])
1744 AC_DEFINE([HAVE_QTCORE_QATOMICINT], [1], [Define to 1 if the installed version of Qt4 provides QAtomicInt.])
1745 ],
1746 [
1747 ac_have_qtcore_qatomicint=no
1748 AC_MSG_RESULT([no])
1749 ])
1750 CXXFLAGS="${safe_CXXFLAGS}"
1751 AC_LANG(C)
1752fi
1753
1754AM_CONDITIONAL([HAVE_QTCORE_QATOMICINT], [test x$ac_have_qtcore_qatomicint = xyes])
1755
1756
1757
sewardj493c4ef2008-12-13 16:45:19 +00001758# Check whether the boost library 1.35 or later has been installed.
1759# The Boost.Threads library has undergone a major rewrite in version 1.35.0.
1760
1761AC_MSG_CHECKING([for boost])
1762
1763AC_LANG(C++)
1764safe_CXXFLAGS=$CXXFLAGS
1765CXXFLAGS="-lboost_thread-mt $mflag_primary"
1766
1767AC_LINK_IFELSE(
1768[
1769#include <boost/thread.hpp>
1770static void thread_func(void)
1771{ }
1772int main(int argc, char** argv)
1773{
1774 boost::thread t(thread_func);
1775 return 0;
1776}
1777],
1778[
1779ac_have_boost_1_35=yes
1780AC_SUBST([BOOST_CFLAGS], [])
1781AC_SUBST([BOOST_LIBS], ["${CXXFLAGS}"])
1782AC_MSG_RESULT([yes])
1783], [
1784ac_have_boost_1_35=no
1785AC_MSG_RESULT([no])
1786])
1787
1788CXXFLAGS=$safe_CXXFLAGS
1789AC_LANG(C)
1790
1791AM_CONDITIONAL([HAVE_BOOST_1_35], [test x$ac_have_boost_1_35 = xyes])
1792
1793
1794# does this compiler support -fopenmp, does it have the include file
1795# <omp.h> and does it have libgomp ?
1796
1797AC_MSG_CHECKING([for OpenMP])
1798
1799safe_CFLAGS=$CFLAGS
sewardjc876a2f2009-01-22 22:44:30 +00001800CFLAGS="-fopenmp $mflag_primary"
sewardj493c4ef2008-12-13 16:45:19 +00001801
1802AC_LINK_IFELSE(
1803[
1804#include <omp.h>
1805int main(int argc, char** argv)
1806{
1807 omp_set_dynamic(0);
1808 return 0;
1809}
1810],
1811[
1812ac_have_openmp=yes
1813AC_MSG_RESULT([yes])
1814], [
1815ac_have_openmp=no
1816AC_MSG_RESULT([no])
1817])
1818CFLAGS=$safe_CFLAGS
1819
1820AM_CONDITIONAL([HAVE_OPENMP], [test x$ac_have_openmp = xyes])
1821
1822
sewardjc876a2f2009-01-22 22:44:30 +00001823# does this compiler have built-in functions for atomic memory access ?
1824AC_MSG_CHECKING([if gcc supports __sync_bool_compare_and_swap])
1825
1826safe_CFLAGS=$CFLAGS
1827CFLAGS="$mflag_primary"
1828
1829AC_TRY_LINK(,
1830[
1831 int variable = 1;
1832 return (__sync_bool_compare_and_swap(&variable, 1, 2)
1833 && __sync_add_and_fetch(&variable, 1) ? 1 : 0)
1834],
1835[
bartc82d1372009-05-31 16:21:23 +00001836 ac_have_builtin_atomic=yes
sewardjc876a2f2009-01-22 22:44:30 +00001837 AC_MSG_RESULT([yes])
1838 AC_DEFINE(HAVE_BUILTIN_ATOMIC, 1, [Define to 1 if gcc supports __sync_bool_compare_and_swap() a.o.])
1839],
1840[
bartc82d1372009-05-31 16:21:23 +00001841 ac_have_builtin_atomic=no
sewardjc876a2f2009-01-22 22:44:30 +00001842 AC_MSG_RESULT([no])
1843])
1844
1845CFLAGS=$safe_CFLAGS
1846
bartc82d1372009-05-31 16:21:23 +00001847AM_CONDITIONAL([HAVE_BUILTIN_ATOMIC], [test x$ac_have_builtin_atomic = xyes])
1848
sewardjc876a2f2009-01-22 22:44:30 +00001849
njn7fd6d382009-01-22 21:56:32 +00001850#----------------------------------------------------------------------------
1851# Ok. We're done checking.
1852#----------------------------------------------------------------------------
sewardj80637752006-03-02 13:48:21 +00001853
njn8b68b642009-06-24 00:37:09 +00001854# Nb: VEX/Makefile is generated from Makefile.vex.in.
1855AC_CONFIG_FILES([
sewardjde4a1d02002-03-22 01:27:54 +00001856 Makefile
njn8b68b642009-06-24 00:37:09 +00001857 VEX/Makefile:Makefile.vex.in
njn25cac76cb2002-09-23 11:21:57 +00001858 valgrind.spec
muellerbddd6072003-11-19 21:50:07 +00001859 valgrind.pc
dirk07596a22008-04-25 11:33:30 +00001860 glibc-2.X.supp
njn254d542432002-09-23 16:09:39 +00001861 docs/Makefile
1862 tests/Makefile
njnc2e7f482002-09-27 08:44:17 +00001863 tests/vg_regtest
njnec0c27a2005-12-10 23:11:28 +00001864 perf/Makefile
1865 perf/vg_perf
njn254d542432002-09-23 16:09:39 +00001866 include/Makefile
njn7a6e7462002-11-09 17:53:30 +00001867 auxprogs/Makefile
njn8b68b642009-06-24 00:37:09 +00001868 mpi/Makefile
njn25ab726032002-09-23 16:24:41 +00001869 coregrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001870 memcheck/Makefile
1871 memcheck/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001872 memcheck/tests/amd64/Makefile
njnc6168192004-11-29 13:54:10 +00001873 memcheck/tests/x86/Makefile
njn3b3b76d2009-01-19 03:44:19 +00001874 memcheck/tests/linux/Makefile
njnf76d27a2009-05-28 01:53:07 +00001875 memcheck/tests/darwin/Makefile
njnea2d6fd2010-07-01 00:20:20 +00001876 memcheck/tests/amd64-linux/Makefile
njna454ec02009-01-19 03:16:59 +00001877 memcheck/tests/x86-linux/Makefile
njn29a5c012009-05-06 06:15:55 +00001878 memcheck/perf/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001879 cachegrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001880 cachegrind/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001881 cachegrind/tests/x86/Makefile
njnf2df9b52002-10-04 11:35:47 +00001882 cachegrind/cg_annotate
njn69d495d2010-06-30 05:23:34 +00001883 cachegrind/cg_diff
weidendoa17f2a32006-03-20 10:27:30 +00001884 callgrind/Makefile
1885 callgrind/callgrind_annotate
1886 callgrind/callgrind_control
1887 callgrind/tests/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001888 helgrind/Makefile
njnf2df9b52002-10-04 11:35:47 +00001889 helgrind/tests/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001890 massif/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001891 massif/tests/Makefile
njn734b8052007-11-01 04:40:37 +00001892 massif/perf/Makefile
njnd5a8d242007-11-02 20:44:57 +00001893 massif/ms_print
njn25cac76cb2002-09-23 11:21:57 +00001894 lackey/Makefile
njnf2df9b52002-10-04 11:35:47 +00001895 lackey/tests/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001896 none/Makefile
1897 none/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001898 none/tests/amd64/Makefile
cerion85665ca2005-06-20 15:51:07 +00001899 none/tests/ppc32/Makefile
sewardj2c48c7b2005-11-29 13:05:56 +00001900 none/tests/ppc64/Makefile
njnc6168192004-11-29 13:54:10 +00001901 none/tests/x86/Makefile
sewardj59570ff2010-01-01 11:59:33 +00001902 none/tests/arm/Makefile
njn0458a122009-02-13 06:23:46 +00001903 none/tests/linux/Makefile
njnf76d27a2009-05-28 01:53:07 +00001904 none/tests/darwin/Makefile
njn06ca3322009-04-15 23:10:04 +00001905 none/tests/x86-linux/Makefile
sewardj9c606bd2008-09-18 18:12:50 +00001906 exp-ptrcheck/Makefile
1907 exp-ptrcheck/tests/Makefile
bartccf17de2008-07-04 15:14:35 +00001908 drd/Makefile
bartccf17de2008-07-04 15:14:35 +00001909 drd/scripts/download-and-build-splash2
1910 drd/tests/Makefile
njndbebecc2009-07-14 01:39:54 +00001911 exp-bbv/Makefile
njndbebecc2009-07-14 01:39:54 +00001912 exp-bbv/tests/Makefile
1913 exp-bbv/tests/x86/Makefile
1914 exp-bbv/tests/x86-linux/Makefile
1915 exp-bbv/tests/amd64-linux/Makefile
1916 exp-bbv/tests/ppc32-linux/Makefile
vince226e0782010-01-06 15:22:11 +00001917 exp-bbv/tests/arm-linux/Makefile
njn8b68b642009-06-24 00:37:09 +00001918])
sewardjd3645802010-06-13 22:13:58 +00001919AC_CONFIG_FILES([coregrind/link_tool_exe_linux],
1920 [chmod +x coregrind/link_tool_exe_linux])
1921AC_CONFIG_FILES([coregrind/link_tool_exe_darwin],
1922 [chmod +x coregrind/link_tool_exe_darwin])
1923AC_CONFIG_FILES([coregrind/link_tool_exe_aix5],
1924 [chmod +x coregrind/link_tool_exe_aix5])
njn8b68b642009-06-24 00:37:09 +00001925AC_OUTPUT
gobry3b777892002-04-04 09:18:39 +00001926
1927cat<<EOF
1928
njn311303f2009-02-06 03:46:50 +00001929 Maximum build arch: ${ARCH_MAX}
1930 Primary build arch: ${VGCONF_ARCH_PRI}
njn3f8a6e92009-06-02 00:20:47 +00001931 Secondary build arch: ${VGCONF_ARCH_SEC}
njn311303f2009-02-06 03:46:50 +00001932 Build OS: ${VGCONF_OS}
njn7fd6d382009-01-22 21:56:32 +00001933 Primary build target: ${VGCONF_PLATFORM_PRI_CAPS}
1934 Secondary build target: ${VGCONF_PLATFORM_SEC_CAPS}
sewardje95d94f2008-09-19 09:02:19 +00001935 Default supp files: ${DEFAULT_SUPP}
gobry3b777892002-04-04 09:18:39 +00001936
gobry3b777892002-04-04 09:18:39 +00001937EOF