blob: db418503fc99b366f46247bd0e0db035bda82a85 [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.
sewardj17c4eb12007-12-11 00:50:54 +000011AC_INIT(Valgrind, 3.4.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
njn8738c282004-11-23 16:31:56 +000018# Where is VEX ?
njnfe408942004-11-23 17:52:24 +000019# Nb: For the 2nd arg, the help string, AS_HELP_STRING is the proper way, but
20# older autoconfs don't support it... here's what it would say:
21#
sewardj85a9dca2005-07-26 10:42:57 +000022# AS_HELP_STRING([--with-vex], [Vex directory]),
njnfe408942004-11-23 17:52:24 +000023#
njn8738c282004-11-23 16:31:56 +000024AC_ARG_WITH(vex,
sewardj85a9dca2005-07-26 10:42:57 +000025 [ --with-vex=/path/to/vex/dir Vex directory],
njn8738c282004-11-23 16:31:56 +000026[
27 AC_CHECK_FILE($withval/pub/libvex.h,
28 [VEX_DIR=$withval],
29 [AC_MSG_ERROR([Directory '$withval' does not exist, or does not contain Vex])])
30],
31[
njn17adf1e2005-09-16 03:59:37 +000032 VEX_DIR='$(top_srcdir)/VEX'
njn8738c282004-11-23 16:31:56 +000033])
sewardj50629ec2004-11-22 13:44:11 +000034AC_SUBST(VEX_DIR)
35
njn657d9512005-06-24 15:20:52 +000036# "make distcheck" first builds a tarball, then extracts it.
37# Then it creates a build directory different from the extracted sources
38# (called _build), and issues
39#
40# ../configure $(DISTCHECK_CONFIGURE_FLAGS)
41#
42# and then builds, runs "make check", installs using DESTDIR, runs make
43# installcheck, uninstalls, checks whether the installed base is empty
44# again, then does yet another "make dist" and compares the resulting
45# tarball with the one it started off with for identical content. Then it
46# tests "make distclean" for no leftover files.
47#
48# So this line means: when doing "make dist", use the same --with-vex value
49# that you used when running configure to configure this tree in the first
50# place.
51AC_SUBST([DISTCHECK_CONFIGURE_FLAGS], [--with-vex=$VEX_DIR])
52
sewardjde4a1d02002-03-22 01:27:54 +000053# Checks for programs.
sewardjb5f6f512005-03-10 23:59:00 +000054CFLAGS="-Wno-long-long"
gobrye721a522002-03-22 13:38:30 +000055
sewardjde4a1d02002-03-22 01:27:54 +000056AC_PROG_LN_S
57AC_PROG_CC
bart0affa492008-03-18 17:53:09 +000058AM_PROG_CC_C_O
sewardjde4a1d02002-03-22 01:27:54 +000059AC_PROG_CPP
njn25e49d8e72002-09-23 09:36:25 +000060AC_PROG_CXX
sewardjde4a1d02002-03-22 01:27:54 +000061AC_PROG_RANLIB
62
bartcddeaf52008-05-25 15:58:11 +000063# If no AR variable was specified, look up the name of the archiver. Otherwise
64# do not touch the AR variable.
65if test "x$AR" = "x"; then
66 AC_PATH_PROGS([AR], ["${LD%ld}ar" "ar"], [ar])
67fi
68AC_ARG_VAR([AR],[Archiver command])
69
gobrye721a522002-03-22 13:38:30 +000070# Check for the compiler support
71if test "${GCC}" != "yes" ; then
72 AC_MSG_ERROR([Valgrind relies on GCC to be compiled])
73fi
74
sewardj2f685952002-12-22 19:32:23 +000075# figure out where perl lives
76AC_PATH_PROG(PERL, perl)
77
njn9315df32003-04-16 20:50:50 +000078# figure out where gdb lives
79AC_PATH_PROG(GDB, gdb)
njnfe408942004-11-23 17:52:24 +000080AC_DEFINE_UNQUOTED(GDB_PATH, "$GDB", [path to GDB])
njn9315df32003-04-16 20:50:50 +000081
daywalker48ccca52002-04-15 00:31:58 +000082# some older automake's don't have it so try something on our own
83ifdef([AM_PROG_AS],[AM_PROG_AS],
84[
gobry1be19852002-03-26 20:44:55 +000085AS="${CC}"
86AC_SUBST(AS)
gobry3b777892002-04-04 09:18:39 +000087
gobry1be19852002-03-26 20:44:55 +000088ASFLAGS=""
89AC_SUBST(ASFLAGS)
daywalker48ccca52002-04-15 00:31:58 +000090])
gobry3b777892002-04-04 09:18:39 +000091
gobry3b777892002-04-04 09:18:39 +000092
sewardjf33b4332008-07-18 18:20:42 +000093# Check we have GNU sed: some of the stuff done by "make install" relies
94# on some pretty fancy sed expressions, and AIX sed doesn't produce the
95# same results, causing install to fail
96
97AC_MSG_CHECKING([for GNU sed])
98
99[sed_firstline=`sed --version | head -n 1`]
100
101case "${sed_firstline}" in
102 GNU*)
103 AC_MSG_RESULT([ok, looks like GNU sed])
104 ;;
105 *)
106 AC_MSG_RESULT([please ensure first 'sed' in your path is GNU sed])
107 AC_MSG_RESULT([note: GNU sed is only required at build/install time])
108 AC_MSG_ERROR([build/install requires that 'sed' is GNU sed])
109 ;;
110esac
111
112
sewardj535c50f2005-06-04 23:14:53 +0000113# We don't want gcc < 3.0
gobrye721a522002-03-22 13:38:30 +0000114AC_MSG_CHECKING([for a supported version of gcc])
115
sewardjf33b4332008-07-18 18:20:42 +0000116[gcc_version=`${CC} --version | head -n 1 | sed 's/^[^0-9]*\([0-9.]*\).*$/\1/'`]
gobrye721a522002-03-22 13:38:30 +0000117
118case "${gcc_version}" in
bart76719bf2008-04-19 07:47:56 +0000119 2.*)
gobrye721a522002-03-22 13:38:30 +0000120 AC_MSG_RESULT([no (${gcc_version})])
sewardj535c50f2005-06-04 23:14:53 +0000121 AC_MSG_ERROR([please use a recent (>= gcc-3.0) version of gcc])
122 ;;
gobrye721a522002-03-22 13:38:30 +0000123 *)
124 AC_MSG_RESULT([ok (${gcc_version})])
125 ;;
126esac
127
gobrye721a522002-03-22 13:38:30 +0000128
sewardj03d86f22006-10-17 00:57:24 +0000129# Checks for the platform, with the aim of setting VG_ARCH. Note
130# that VG_ARCH must be set to reflect the most that this CPU can
131# do: for example if it is a 64-bit capable PowerPC, then it must
132# be set to ppc64 and not ppc32. Ditto for amd64.
133
sewardjde4a1d02002-03-22 01:27:54 +0000134AC_CANONICAL_HOST
135
136AC_MSG_CHECKING([for a supported CPU])
nethercote888ecb72004-08-23 14:54:40 +0000137AC_SUBST(VG_ARCH)
sewardjbc692db2006-01-04 03:31:07 +0000138
sewardj9b0567a2006-01-17 02:56:18 +0000139AC_SUBST(VG_ARCH_ALL)
140VG_ARCH_ALL="amd64 ppc32 ppc64 x86"
141
sewardj45f4e7c2005-09-27 19:20:21 +0000142AC_SUBST(VALT_LOAD_ADDRESS)
sewardjde4a1d02002-03-22 01:27:54 +0000143
gobrye721a522002-03-22 13:38:30 +0000144case "${host_cpu}" in
sewardjde4a1d02002-03-22 01:27:54 +0000145 i?86)
146 AC_MSG_RESULT([ok (${host_cpu})])
nethercote888ecb72004-08-23 14:54:40 +0000147 VG_ARCH="x86"
sewardjd7baad42006-05-20 01:13:38 +0000148 valt_load_address_normal="0x38000000"
149 valt_load_address_inner="0x28000000"
sewardjde4a1d02002-03-22 01:27:54 +0000150 ;;
151
njnfe408942004-11-23 17:52:24 +0000152 x86_64)
153 AC_MSG_RESULT([ok (${host_cpu})])
154 VG_ARCH="amd64"
sewardjd7baad42006-05-20 01:13:38 +0000155 valt_load_address_normal="0x38000000"
156 valt_load_address_inner="0x28000000"
njnfe408942004-11-23 17:52:24 +0000157 ;;
158
sewardj2c48c7b2005-11-29 13:05:56 +0000159 powerpc64)
sewardj03d86f22006-10-17 00:57:24 +0000160# This value can only happen on Linux, not on AIX
sewardj2c48c7b2005-11-29 13:05:56 +0000161 AC_MSG_RESULT([ok (${host_cpu})])
162 VG_ARCH="ppc64"
sewardjd7baad42006-05-20 01:13:38 +0000163 valt_load_address_normal="0x38000000"
164 valt_load_address_inner="0x28000000"
sewardj2c48c7b2005-11-29 13:05:56 +0000165 ;;
166
167 powerpc)
sewardj03d86f22006-10-17 00:57:24 +0000168# Complexity. 'powerpc' on AIX implies a 64-bit capable CPU.
169# Whereas in Linux that means only a 32-bit capable CPU.
cerion85665ca2005-06-20 15:51:07 +0000170 AC_MSG_RESULT([ok (${host_cpu})])
sewardj03d86f22006-10-17 00:57:24 +0000171 case "${host_os}" in
172 aix5.*)
173 VG_ARCH="ppc64"
174 ;;
175 *)
176 VG_ARCH="ppc32"
177 ;;
178 esac
sewardjd7baad42006-05-20 01:13:38 +0000179 valt_load_address_normal="0x38000000"
180 valt_load_address_inner="0x28000000"
nethercote9bcc9062004-10-13 13:50:01 +0000181 ;;
182
sewardjde4a1d02002-03-22 01:27:54 +0000183 *)
184 AC_MSG_RESULT([no (${host_cpu})])
nethercote81d5c662004-10-13 13:18:51 +0000185 AC_MSG_ERROR([Unsupported host architecture. Sorry])
sewardjde4a1d02002-03-22 01:27:54 +0000186 ;;
187esac
188
sewardj45f4e7c2005-09-27 19:20:21 +0000189# Check if this should be built as an inner Valgrind, to be run within
190# another Valgrind. Choose the load address accordingly.
sewardj86e992f2006-01-28 18:39:09 +0000191AC_CACHE_CHECK([for use as an inner Valgrind], vg_cv_inner,
192 [AC_ARG_ENABLE(inner,
193 [ --enable-inner enables self-hosting],
194 [vg_cv_inner=$enableval],
195 [vg_cv_inner=no])])
sewardj45f4e7c2005-09-27 19:20:21 +0000196if test "$vg_cv_inner" = yes; then
197 AC_DEFINE([ENABLE_INNER], 1, [configured to run as an inner Valgrind])
198 VALT_LOAD_ADDRESS=$valt_load_address_inner
199else
200 VALT_LOAD_ADDRESS=$valt_load_address_normal
201fi
202
sewardj86e992f2006-01-28 18:39:09 +0000203# Sometimes it's convenient to subvert the bi-arch build system and
204# just have a single build even though the underlying platform is
205# capable of both. Hence handle --enable-only64bit and
206# --enable-only32bit. Complain if both are issued :-)
207
208# Check if a 64-bit only build has been requested
209AC_CACHE_CHECK([for a 64-bit only build], vg_cv_only64bit,
210 [AC_ARG_ENABLE(only64bit,
211 [ --enable-only64bit do a 64-bit only build],
212 [vg_cv_only64bit=$enableval],
213 [vg_cv_only64bit=no])])
214
215# Check if a 32-bit only build has been requested
216AC_CACHE_CHECK([for a 32-bit only build], vg_cv_only32bit,
217 [AC_ARG_ENABLE(only32bit,
218 [ --enable-only32bit do a 32-bit only build],
219 [vg_cv_only32bit=$enableval],
220 [vg_cv_only32bit=no])])
221
222# Stay sane
223if test x$vg_cv_only64bit = xyes -a x$vg_cv_only32bit = xyes; then
224 AC_MSG_ERROR(
225 [Nonsensical: both --enable-only64bit and --enable-only32bit.])
226fi
227
228
229
sewardjde4a1d02002-03-22 01:27:54 +0000230AC_MSG_CHECKING([for a supported OS])
nethercote888ecb72004-08-23 14:54:40 +0000231AC_SUBST(VG_OS)
sewardjde4a1d02002-03-22 01:27:54 +0000232
gobrye721a522002-03-22 13:38:30 +0000233case "${host_os}" in
mueller8c68e042004-01-03 15:21:14 +0000234 *linux*)
sewardjde4a1d02002-03-22 01:27:54 +0000235 AC_MSG_RESULT([ok (${host_os})])
nethercote888ecb72004-08-23 14:54:40 +0000236 VG_OS="linux"
mueller8c68e042004-01-03 15:21:14 +0000237
238 # Ok, this is linux. Check the kernel version
239 AC_MSG_CHECKING([for the kernel version])
240
241 kernel=`uname -r`
242
243 case "${kernel}" in
244 2.6.*)
245 AC_MSG_RESULT([2.6 family (${kernel})])
246 AC_DEFINE([KERNEL_2_6], 1, [Define to 1 if you're using Linux 2.6.x])
247 ;;
248
249 2.4.*)
250 AC_MSG_RESULT([2.4 family (${kernel})])
251 AC_DEFINE([KERNEL_2_4], 1, [Define to 1 if you're using Linux 2.4.x])
252 ;;
253
mueller8c68e042004-01-03 15:21:14 +0000254 *)
255 AC_MSG_RESULT([unsupported (${kernel})])
nethercote4fa681f2004-11-08 17:51:39 +0000256 AC_MSG_ERROR([Valgrind works on kernels 2.4, 2.6])
mueller8c68e042004-01-03 15:21:14 +0000257 ;;
258 esac
259
260 ;;
261
sewardj03d86f22006-10-17 00:57:24 +0000262 aix5.1.*)
263 AC_MSG_RESULT([ok (${host_os})])
264 VG_OS="aix5"
265 ;;
266 aix5.2.*)
267 AC_MSG_RESULT([ok (${host_os})])
268 VG_OS="aix5"
269 ;;
270 aix5.3.*)
271 AC_MSG_RESULT([ok (${host_os})])
272 VG_OS="aix5"
273 ;;
274
mueller8c68e042004-01-03 15:21:14 +0000275 *freebsd*)
276 AC_MSG_RESULT([ok (${host_os})])
nethercote888ecb72004-08-23 14:54:40 +0000277 VG_OS="freebsd"
sewardjde4a1d02002-03-22 01:27:54 +0000278 ;;
279
280 *)
281 AC_MSG_RESULT([no (${host_os})])
mueller8c68e042004-01-03 15:21:14 +0000282 AC_MSG_ERROR([Valgrind is operating system specific. Sorry. Please consider doing a port.])
sewardjde4a1d02002-03-22 01:27:54 +0000283 ;;
284esac
285
tomd6398392006-06-07 17:44:36 +0000286# If we are building on a 64 bit platform test to see if the system
287# supports building 32 bit programs and disable 32 bit support if it
288# does not support building 32 bit programs
289
290case "$VG_ARCH-$VG_OS" in
291 amd64-linux|ppc64-linux)
292 AC_MSG_CHECKING([for 32 bit build support])
293 safe_CFLAGS=$CFLAGS
294 CFLAGS="-m32"
295 AC_TRY_LINK(, [
296 int main () { return 0 ; }
297 ],
298 [
299 AC_MSG_RESULT([yes])
300 ], [
301 vg_cv_only64bit="yes"
302 AC_MSG_RESULT([no])
303 ])
304 CFLAGS=$safe_CFLAGS;;
305esac
306
307if test x$vg_cv_only64bit = xyes -a x$vg_cv_only32bit = xyes; then
308 AC_MSG_ERROR(
309 [--enable-only32bit was specified but system does not support 32 bit builds])
310fi
nethercote888ecb72004-08-23 14:54:40 +0000311
sewardj01262142006-01-04 01:20:28 +0000312# Establish VG_PLATFORM_PRI. This is the primary build target. The
313# entire system, including regression and performance tests, will be
sewardjbc692db2006-01-04 03:31:07 +0000314# built for this target.
sewardj01262142006-01-04 01:20:28 +0000315#
sewardjbc692db2006-01-04 03:31:07 +0000316# Also establish VG_PLATFORM_SEC, the secondary build target, if
sewardj01262142006-01-04 01:20:28 +0000317# possible. The system will also be built for this target, but not
sewardjbc692db2006-01-04 03:31:07 +0000318# the regression or performance tests.
sewardj01262142006-01-04 01:20:28 +0000319#
320AC_MSG_CHECKING([for a supported CPU/OS combination])
nethercote888ecb72004-08-23 14:54:40 +0000321
sewardj01262142006-01-04 01:20:28 +0000322AC_SUBST(VG_PLATFORM_PRI)
323AC_SUBST(VG_PLATFORM_SEC)
324
325case "$VG_ARCH-$VG_OS" in
326 x86-linux)
327 VG_PLATFORM_PRI="X86_LINUX"
328 VG_PLATFORM_SEC=""
sewardj3e38ce02004-11-23 01:17:29 +0000329 AC_MSG_RESULT([ok (${host_cpu}-${host_os})])
sewardj01262142006-01-04 01:20:28 +0000330 ;;
331 amd64-linux)
sewardj86e992f2006-01-28 18:39:09 +0000332 if test x$vg_cv_only64bit = xyes; then
333 VG_PLATFORM_PRI="AMD64_LINUX"
334 VG_PLATFORM_SEC=""
335 elif test x$vg_cv_only32bit = xyes; then
336 VG_PLATFORM_PRI="X86_LINUX"
337 VG_PLATFORM_SEC=""
338 else
339 VG_PLATFORM_PRI="AMD64_LINUX"
340 VG_PLATFORM_SEC="X86_LINUX"
341 fi
sewardj01262142006-01-04 01:20:28 +0000342 AC_MSG_RESULT([ok (${host_cpu}-${host_os})])
343 ;;
344 ppc32-linux)
345 VG_PLATFORM_PRI="PPC32_LINUX"
346 VG_PLATFORM_SEC=""
347 AC_MSG_RESULT([ok (${host_cpu}-${host_os})])
348 ;;
sewardj03d86f22006-10-17 00:57:24 +0000349 ppc64-aix5)
350 if test x$vg_cv_only64bit = xyes; then
351 VG_PLATFORM_PRI="PPC64_AIX5"
352 VG_PLATFORM_SEC=""
353 elif test x$vg_cv_only32bit = xyes; then
354 VG_PLATFORM_PRI="PPC32_AIX5"
355 VG_PLATFORM_SEC=""
356 else
357 VG_PLATFORM_PRI="PPC64_AIX5"
358 VG_PLATFORM_SEC="PPC32_AIX5"
359 fi
360 AC_MSG_RESULT([ok (${host_cpu}-${host_os})])
361 ;;
sewardj01262142006-01-04 01:20:28 +0000362 ppc64-linux)
sewardj86e992f2006-01-28 18:39:09 +0000363 if test x$vg_cv_only64bit = xyes; then
364 VG_PLATFORM_PRI="PPC64_LINUX"
365 VG_PLATFORM_SEC=""
366 elif test x$vg_cv_only32bit = xyes; then
367 VG_PLATFORM_PRI="PPC32_LINUX"
368 VG_PLATFORM_SEC=""
369 else
370 VG_PLATFORM_PRI="PPC64_LINUX"
371 VG_PLATFORM_SEC="PPC32_LINUX"
372 fi
sewardj01262142006-01-04 01:20:28 +0000373 AC_MSG_RESULT([ok (${host_cpu}-${host_os})])
374 ;;
nethercote888ecb72004-08-23 14:54:40 +0000375 *)
sewardj01262142006-01-04 01:20:28 +0000376 VG_PLATFORM_PRI="unknown"
377 VG_PLATFORM_SEC="unknown"
nethercote888ecb72004-08-23 14:54:40 +0000378 AC_MSG_RESULT([no (${host_cpu}-${host_os})])
sewardj3e38ce02004-11-23 01:17:29 +0000379 AC_MSG_ERROR([Valgrind is platform specific. Sorry. Please consider doing a port.])
nethercote888ecb72004-08-23 14:54:40 +0000380 ;;
381esac
sewardjde4a1d02002-03-22 01:27:54 +0000382
sewardj03d86f22006-10-17 00:57:24 +0000383# Set up VGP_<platform>. Either one or two of these become defined.
sewardj01262142006-01-04 01:20:28 +0000384#
sewardj03d86f22006-10-17 00:57:24 +0000385AM_CONDITIONAL(VGP_X86_LINUX,
sewardjbc692db2006-01-04 03:31:07 +0000386 test x$VG_PLATFORM_PRI = xX86_LINUX \
387 -o x$VG_PLATFORM_SEC = xX86_LINUX)
sewardj03d86f22006-10-17 00:57:24 +0000388AM_CONDITIONAL(VGP_AMD64_LINUX,
sewardj01262142006-01-04 01:20:28 +0000389 test x$VG_PLATFORM_PRI = xAMD64_LINUX)
sewardj03d86f22006-10-17 00:57:24 +0000390AM_CONDITIONAL(VGP_PPC32_LINUX,
sewardjbc692db2006-01-04 03:31:07 +0000391 test x$VG_PLATFORM_PRI = xPPC32_LINUX \
392 -o x$VG_PLATFORM_SEC = xPPC32_LINUX)
sewardj03d86f22006-10-17 00:57:24 +0000393AM_CONDITIONAL(VGP_PPC64_LINUX,
sewardj01262142006-01-04 01:20:28 +0000394 test x$VG_PLATFORM_PRI = xPPC64_LINUX)
sewardj03d86f22006-10-17 00:57:24 +0000395AM_CONDITIONAL(VGP_PPC32_AIX5,
396 test x$VG_PLATFORM_PRI = xPPC32_AIX5 \
397 -o x$VG_PLATFORM_SEC = xPPC32_AIX5)
398AM_CONDITIONAL(VGP_PPC64_AIX5,
399 test x$VG_PLATFORM_PRI = xPPC64_AIX5)
400
401# Similarly, set up VGO_<os>. Exactly one of these becomes defined.
402# Relies on the assumption that the primary and secondary targets are
403# for the same OS, so therefore only necessary to test the primary.
404#
405AM_CONDITIONAL(VGO_LINUX,
406 test x$VG_PLATFORM_PRI = xX86_LINUX \
407 -o x$VG_PLATFORM_PRI = xAMD64_LINUX \
408 -o x$VG_PLATFORM_PRI = xPPC32_LINUX \
409 -o x$VG_PLATFORM_PRI = xPPC64_LINUX)
410AM_CONDITIONAL(VGO_AIX5,
411 test x$VG_PLATFORM_PRI = xPPC32_AIX5 \
412 -o x$VG_PLATFORM_PRI = xPPC64_AIX5)
413
414
415# Sometimes, in the Makefile.am-s, it's useful to know
416# whether or not there is a secondary target.
417#
418AM_CONDITIONAL(VGP_HAVE_SECONDARY,
419 test x$VG_PLATFORM_SEC != x)
tomfb7bcde2005-11-07 15:24:38 +0000420
tomb637bad2005-11-08 12:28:35 +0000421
sewardj01262142006-01-04 01:20:28 +0000422# This variable will collect the individual suppression files
423# depending on the results of autoconf
424DEFAULT_SUPP=""
sewardjde4a1d02002-03-22 01:27:54 +0000425AC_SUBST(DEFAULT_SUPP)
426
sewardj01262142006-01-04 01:20:28 +0000427
dirk07596a22008-04-25 11:33:30 +0000428GLIBC_VERSION=""
sewardjde4a1d02002-03-22 01:27:54 +0000429
sewardjde4a1d02002-03-22 01:27:54 +0000430AC_EGREP_CPP([GLIBC_22], [
431#include <features.h>
432#ifdef __GNU_LIBRARY__
433 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 2)
434 GLIBC_22
435 #endif
436#endif
437],
dirk07596a22008-04-25 11:33:30 +0000438GLIBC_VERSION="2.2")
sewardjde4a1d02002-03-22 01:27:54 +0000439
sewardj08c7f012002-10-07 23:56:55 +0000440AC_EGREP_CPP([GLIBC_23], [
441#include <features.h>
442#ifdef __GNU_LIBRARY__
443 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 3)
444 GLIBC_23
445 #endif
446#endif
447],
dirk07596a22008-04-25 11:33:30 +0000448GLIBC_VERSION="2.3")
sewardj08c7f012002-10-07 23:56:55 +0000449
njn781dba52005-06-30 04:06:38 +0000450AC_EGREP_CPP([GLIBC_24], [
451#include <features.h>
452#ifdef __GNU_LIBRARY__
453 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 4)
454 GLIBC_24
455 #endif
456#endif
457],
dirk07596a22008-04-25 11:33:30 +0000458GLIBC_VERSION="2.4")
njn781dba52005-06-30 04:06:38 +0000459
dirkaece45c2006-10-12 08:17:49 +0000460AC_EGREP_CPP([GLIBC_25], [
461#include <features.h>
462#ifdef __GNU_LIBRARY__
463 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 5)
464 GLIBC_25
465 #endif
466#endif
467],
dirk07596a22008-04-25 11:33:30 +0000468GLIBC_VERSION="2.5")
dirkaece45c2006-10-12 08:17:49 +0000469
dirkc8bd0c52007-05-23 17:39:08 +0000470AC_EGREP_CPP([GLIBC_26], [
471#include <features.h>
472#ifdef __GNU_LIBRARY__
473 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 6)
474 GLIBC_26
475 #endif
476#endif
477],
dirk07596a22008-04-25 11:33:30 +0000478GLIBC_VERSION="2.6")
dirkc8bd0c52007-05-23 17:39:08 +0000479
sewardj68c80c12007-11-18 14:40:02 +0000480AC_EGREP_CPP([GLIBC_27], [
481#include <features.h>
482#ifdef __GNU_LIBRARY__
483 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 7)
484 GLIBC_27
485 #endif
486#endif
487],
dirk07596a22008-04-25 11:33:30 +0000488GLIBC_VERSION="2.7")
489
490AC_EGREP_CPP([GLIBC_28], [
491#include <features.h>
492#ifdef __GNU_LIBRARY__
493 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 8)
494 GLIBC_28
495 #endif
496#endif
497],
498GLIBC_VERSION="2.8")
sewardj68c80c12007-11-18 14:40:02 +0000499
sewardj03d86f22006-10-17 00:57:24 +0000500AC_EGREP_CPP([AIX5_LIBC], [
501#include <standards.h>
502#if defined(_AIXVERSION_510) || defined(_AIXVERSION_520) || defined(_AIXVERSION_530)
503 AIX5_LIBC
504#endif
505],
dirk07596a22008-04-25 11:33:30 +0000506GLIBC_VERSION="aix5")
daywalkere9212b32003-06-15 22:39:15 +0000507
dirk07596a22008-04-25 11:33:30 +0000508AC_MSG_CHECKING([the GLIBC_VERSION version])
sewardj03d86f22006-10-17 00:57:24 +0000509
dirk07596a22008-04-25 11:33:30 +0000510case "${GLIBC_VERSION}" in
sewardjde4a1d02002-03-22 01:27:54 +0000511 2.2)
512 AC_MSG_RESULT(2.2 family)
daywalker418c7482002-10-16 13:09:26 +0000513 AC_DEFINE([GLIBC_2_2], 1, [Define to 1 if you're using glibc 2.2.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000514 DEFAULT_SUPP="glibc-2.2.supp ${DEFAULT_SUPP}"
515 DEFAULT_SUPP="glibc-2.2-LinuxThreads-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000516 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardjde4a1d02002-03-22 01:27:54 +0000517 ;;
518
sewardj08c7f012002-10-07 23:56:55 +0000519 2.3)
520 AC_MSG_RESULT(2.3 family)
daywalker418c7482002-10-16 13:09:26 +0000521 AC_DEFINE([GLIBC_2_3], 1, [Define to 1 if you're using glibc 2.3.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000522 DEFAULT_SUPP="glibc-2.3.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000523 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000524 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardj08c7f012002-10-07 23:56:55 +0000525 ;;
526
njn781dba52005-06-30 04:06:38 +0000527 2.4)
528 AC_MSG_RESULT(2.4 family)
529 AC_DEFINE([GLIBC_2_4], 1, [Define to 1 if you're using glibc 2.4.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000530 DEFAULT_SUPP="glibc-2.4.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000531 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000532 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
njn781dba52005-06-30 04:06:38 +0000533 ;;
534
dirkaece45c2006-10-12 08:17:49 +0000535 2.5)
536 AC_MSG_RESULT(2.5 family)
537 AC_DEFINE([GLIBC_2_5], 1, [Define to 1 if you're using glibc 2.5.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000538 DEFAULT_SUPP="glibc-2.5.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000539 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000540 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
dirkaece45c2006-10-12 08:17:49 +0000541 ;;
dirkc8bd0c52007-05-23 17:39:08 +0000542 2.6)
543 AC_MSG_RESULT(2.6 family)
544 AC_DEFINE([GLIBC_2_6], 1, [Define to 1 if you're using glibc 2.6.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000545 DEFAULT_SUPP="glibc-2.6.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000546 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000547 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000548 ;;
549 2.7)
550 AC_MSG_RESULT(2.7 family)
551 AC_DEFINE([GLIBC_2_7], 1, [Define to 1 if you're using glibc 2.7.x])
dirk07596a22008-04-25 11:33:30 +0000552 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000553 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000554 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
dirkc8bd0c52007-05-23 17:39:08 +0000555 ;;
dirk07596a22008-04-25 11:33:30 +0000556 2.8)
557 AC_MSG_RESULT(2.8 family)
dirkeb939fc2008-04-27 20:38:47 +0000558 AC_DEFINE([GLIBC_2_8], 1, [Define to 1 if you're using glibc 2.8.x])
dirk07596a22008-04-25 11:33:30 +0000559 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
560 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
561 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
562 ;;
563
sewardj03d86f22006-10-17 00:57:24 +0000564 aix5)
sewardj2f3bcd22006-12-12 01:38:15 +0000565 AC_MSG_RESULT(AIX 5.1 or 5.2 or 5.3)
566 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 +0000567 DEFAULT_SUPP="aix5libc.supp ${DEFAULT_SUPP}"
568 ;;
dirkaece45c2006-10-12 08:17:49 +0000569
sewardjde4a1d02002-03-22 01:27:54 +0000570 *)
571 AC_MSG_RESULT(unsupported version)
dirk07596a22008-04-25 11:33:30 +0000572 AC_MSG_ERROR([Valgrind requires glibc version 2.2 - 2.8])
573 AC_MSG_ERROR([or AIX 5.1 or 5.2 or 5.3 GLIBC_VERSION])
sewardjde4a1d02002-03-22 01:27:54 +0000574 ;;
575esac
576
dirk07596a22008-04-25 11:33:30 +0000577AC_SUBST(GLIBC_VERSION)
sewardj535c50f2005-06-04 23:14:53 +0000578
sewardj414f3582008-07-18 20:46:00 +0000579
580# Add default suppressions for the X client libraries. Make no
581# attempt to detect whether such libraries are installed on the
582# build machine (or even if any X facilities are present); just
583# add the suppressions antidisirregardless.
584DEFAULT_SUPP="xfree-4.supp ${DEFAULT_SUPP}"
585DEFAULT_SUPP="xfree-3.supp ${DEFAULT_SUPP}"
gobrye721a522002-03-22 13:38:30 +0000586
sewardj2e10a682003-04-07 19:36:41 +0000587
bart59e2f182008-04-28 16:22:53 +0000588# Check for CLOCK_MONOTONIC
589
590AC_MSG_CHECKING([for CLOCK_MONOTONIC])
591
592AC_TRY_COMPILE(
593[
594#include <time.h>
595], [
596 struct timespec t;
597 clock_gettime(CLOCK_MONOTONIC, &t);
598 return 0;
599],
600[
601AC_MSG_RESULT([yes])
602AC_DEFINE([HAVE_CLOCK_MONOTONIC], 1,
603 [Define to 1 if you have the `CLOCK_MONOTONIC' constant.])
604], [
605AC_MSG_RESULT([no])
606])
607
bartfea06922008-05-03 09:12:15 +0000608
609# Check for PTHREAD_MUTEX_ADAPTIVE_NP
610
611AC_MSG_CHECKING([for PTHREAD_MUTEX_ADAPTIVE_NP])
612
613AC_TRY_COMPILE(
614[
615#define _GNU_SOURCE
616#include <pthread.h>
617], [
618 return (PTHREAD_MUTEX_ADAPTIVE_NP);
619],
620[
621AC_MSG_RESULT([yes])
622AC_DEFINE([HAVE_PTHREAD_MUTEX_ADAPTIVE_NP], 1,
623 [Define to 1 if you have the `PTHREAD_MUTEX_ADAPTIVE_NP' constant.])
624], [
625AC_MSG_RESULT([no])
626])
627
628
629# Check for PTHREAD_MUTEX_ERRORCHECK_NP
630
631AC_MSG_CHECKING([for PTHREAD_MUTEX_ERRORCHECK_NP])
632
633AC_TRY_COMPILE(
634[
635#define _GNU_SOURCE
636#include <pthread.h>
637], [
638 return (PTHREAD_MUTEX_ERRORCHECK_NP);
639],
640[
641AC_MSG_RESULT([yes])
642AC_DEFINE([HAVE_PTHREAD_MUTEX_ERRORCHECK_NP], 1,
643 [Define to 1 if you have the `PTHREAD_MUTEX_ERRORCHECK_NP' constant.])
644], [
645AC_MSG_RESULT([no])
646])
647
648
649# Check for PTHREAD_MUTEX_RECURSIVE_NP
650
651AC_MSG_CHECKING([for PTHREAD_MUTEX_RECURSIVE_NP])
652
653AC_TRY_COMPILE(
654[
655#define _GNU_SOURCE
656#include <pthread.h>
657], [
658 return (PTHREAD_MUTEX_RECURSIVE_NP);
659],
660[
661AC_MSG_RESULT([yes])
662AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE_NP], 1,
663 [Define to 1 if you have the `PTHREAD_MUTEX_RECURSIVE_NP' constant.])
664], [
665AC_MSG_RESULT([no])
666])
667
668
669# Check for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
670
671AC_MSG_CHECKING([for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP])
672
673AC_TRY_COMPILE(
674[
675#define _GNU_SOURCE
676#include <pthread.h>
677], [
678 pthread_mutex_t m = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
679 return 0;
680],
681[
682AC_MSG_RESULT([yes])
683AC_DEFINE([HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], 1,
684 [Define to 1 if you have the `PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP' constant.])
685], [
686AC_MSG_RESULT([no])
687])
688
689
bart5e389f12008-04-05 12:53:15 +0000690# Check whether pthread_mutex_t has a member called __m_kind.
691
692AC_MSG_CHECKING([for pthread_mutex_t::__m_kind])
693
bart56730cd2008-05-11 06:41:46 +0000694AC_TRY_COMPILE(
bart5e389f12008-04-05 12:53:15 +0000695[
bart56730cd2008-05-11 06:41:46 +0000696 #include <pthread.h>
697], [
bart5e389f12008-04-05 12:53:15 +0000698 pthread_mutex_t m;
699 return m.__m_kind;
bart56730cd2008-05-11 06:41:46 +0000700], [
bart5e389f12008-04-05 12:53:15 +0000701AC_MSG_RESULT([yes])
702AC_DEFINE([HAVE_PTHREAD_MUTEX_T__M_KIND], 1,
703 [Define to 1 if pthread_mutex_t has a member called __m_kind.])
704], [
705AC_MSG_RESULT([no])
706])
707
708
709# Check whether pthread_mutex_t has a member called __data.__kind.
710
711AC_MSG_CHECKING([for pthread_mutex_t::__data.__kind])
712
bart56730cd2008-05-11 06:41:46 +0000713AC_TRY_COMPILE(
bart5e389f12008-04-05 12:53:15 +0000714[
bart56730cd2008-05-11 06:41:46 +0000715#include <pthread.h>
716], [
bart5e389f12008-04-05 12:53:15 +0000717 pthread_mutex_t m;
718 return m.__data.__kind;
bart56730cd2008-05-11 06:41:46 +0000719], [
bart5e389f12008-04-05 12:53:15 +0000720AC_MSG_RESULT([yes])
721AC_DEFINE([HAVE_PTHREAD_MUTEX_T__DATA__KIND], 1,
722 [Define to 1 if pthread_mutex_t has a member __data.__kind.])
723], [
724AC_MSG_RESULT([no])
725])
726
727
bart61111332008-03-10 17:57:41 +0000728# does this compiler support -fopenmp, does it have the include file
729# <omp.h> and does it have libgomp ?
bart29cc9db2008-03-09 15:59:30 +0000730
bart1f52b822008-03-12 17:11:48 +0000731AC_MSG_CHECKING([for OpenMP])
732
bart29cc9db2008-03-09 15:59:30 +0000733safe_CFLAGS=$CFLAGS
734CFLAGS="-fopenmp"
735
bart1f52b822008-03-12 17:11:48 +0000736AC_LINK_IFELSE(
bart29cc9db2008-03-09 15:59:30 +0000737[
bart1f52b822008-03-12 17:11:48 +0000738#include <omp.h>
739int main(int argc, char** argv)
740{
741 omp_set_dynamic(0);
742 return 0;
743}
744],
745[
746ac_have_openmp=yes
bart29cc9db2008-03-09 15:59:30 +0000747AC_MSG_RESULT([yes])
748], [
bart1f52b822008-03-12 17:11:48 +0000749ac_have_openmp=no
bart29cc9db2008-03-09 15:59:30 +0000750AC_MSG_RESULT([no])
751])
752CFLAGS=$safe_CFLAGS
753
bart1f52b822008-03-12 17:11:48 +0000754AM_CONDITIONAL([HAVE_OPENMP], [test x$ac_have_openmp = xyes])
bart29cc9db2008-03-09 15:59:30 +0000755
756
bart62c370e2008-05-12 18:50:51 +0000757# does this compiler support -maltivec and does it have the include file
758# <altivec.h> ?
759
760AC_MSG_CHECKING([for Altivec])
761
762safe_CFLAGS=$CFLAGS
763CFLAGS="-maltivec"
764
765AC_TRY_COMPILE(
766[
767#include <altivec.h>
768], [
769 vector unsigned int v;
770],
771[
772ac_have_altivec=yes
773AC_MSG_RESULT([yes])
774], [
775ac_have_altivec=no
776AC_MSG_RESULT([no])
777])
778CFLAGS=$safe_CFLAGS
779
780AM_CONDITIONAL([HAS_ALTIVEC], [test x$ac_have_altivec = xyes])
781AM_CONDITIONAL([HAVE_ALTIVEC_H], [test x$ac_have_altivec = xyes])
782
783
barta50aa8a2008-04-27 06:06:57 +0000784# Check for eventfd_t, eventfd() and eventfd_read()
785AC_MSG_CHECKING([for eventfd()])
786
787AC_TRY_LINK(
788[
789#include <sys/eventfd.h>
790], [
791 eventfd_t ev;
792 int fd;
793
794 fd = eventfd(5, 0);
795 eventfd_read(fd, &ev);
796 return 0;
797],
798[
799AC_MSG_RESULT([yes])
800AC_DEFINE([HAVE_EVENTFD], 1,
801 [Define to 1 if you have the `eventfd' function.])
802AC_DEFINE([HAVE_EVENTFD_READ], 1,
803 [Define to 1 if you have the `eventfd_read' function.])
804], [
805AC_MSG_RESULT([no])
806])
807
808
sewardj535c50f2005-06-04 23:14:53 +0000809# does this compiler support -m32 ?
810AC_MSG_CHECKING([if gcc accepts -m32])
811
812safe_CFLAGS=$CFLAGS
813CFLAGS="-m32"
814
815AC_TRY_COMPILE(, [
816int main () { return 0 ; }
817],
818[
819FLAG_M32="-m32"
820AC_MSG_RESULT([yes])
821], [
822FLAG_M32=""
823AC_MSG_RESULT([no])
824])
825CFLAGS=$safe_CFLAGS
826
827AC_SUBST(FLAG_M32)
828
829
sewardj03d86f22006-10-17 00:57:24 +0000830# does this compiler support -maix32 ?
831AC_MSG_CHECKING([if gcc accepts -maix32])
832
833safe_CFLAGS=$CFLAGS
834CFLAGS="-maix32"
835
836AC_TRY_COMPILE(, [
837int main () { return 0 ; }
838],
839[
840FLAG_MAIX32="-maix32"
841AC_MSG_RESULT([yes])
842], [
843FLAG_MAIX32=""
844AC_MSG_RESULT([no])
845])
846CFLAGS=$safe_CFLAGS
847
848AC_SUBST(FLAG_MAIX32)
849
850
sewardj01262142006-01-04 01:20:28 +0000851# does this compiler support -m64 ?
852AC_MSG_CHECKING([if gcc accepts -m64])
853
854safe_CFLAGS=$CFLAGS
855CFLAGS="-m64"
856
857AC_TRY_COMPILE(, [
858int main () { return 0 ; }
859],
860[
861FLAG_M64="-m64"
862AC_MSG_RESULT([yes])
863], [
864FLAG_M64=""
865AC_MSG_RESULT([no])
866])
867CFLAGS=$safe_CFLAGS
868
869AC_SUBST(FLAG_M64)
870
871
sewardj03d86f22006-10-17 00:57:24 +0000872# does this compiler support -maix64 ?
873AC_MSG_CHECKING([if gcc accepts -maix64])
874
875safe_CFLAGS=$CFLAGS
876CFLAGS="-maix64"
877
878AC_TRY_COMPILE(, [
879int main () { return 0 ; }
880],
881[
882FLAG_MAIX64="-maix64"
883AC_MSG_RESULT([yes])
884], [
885FLAG_MAIX64=""
886AC_MSG_RESULT([no])
887])
888CFLAGS=$safe_CFLAGS
889
890AC_SUBST(FLAG_MAIX64)
891
892
sewardj67f1fcc2005-07-03 10:41:02 +0000893# does this compiler support -mmmx ?
894AC_MSG_CHECKING([if gcc accepts -mmmx])
895
896safe_CFLAGS=$CFLAGS
897CFLAGS="-mmmx"
898
899AC_TRY_COMPILE(, [
900int main () { return 0 ; }
901],
902[
903FLAG_MMMX="-mmmx"
904AC_MSG_RESULT([yes])
905], [
906FLAG_MMMX=""
907AC_MSG_RESULT([no])
908])
909CFLAGS=$safe_CFLAGS
910
911AC_SUBST(FLAG_MMMX)
912
913
914# does this compiler support -msse ?
915AC_MSG_CHECKING([if gcc accepts -msse])
916
917safe_CFLAGS=$CFLAGS
918CFLAGS="-msse"
919
920AC_TRY_COMPILE(, [
921int main () { return 0 ; }
922],
923[
924FLAG_MSSE="-msse"
925AC_MSG_RESULT([yes])
926], [
927FLAG_MSSE=""
928AC_MSG_RESULT([no])
929])
930CFLAGS=$safe_CFLAGS
931
932AC_SUBST(FLAG_MSSE)
933
934
sewardj5b754b42002-06-03 22:53:35 +0000935# does this compiler support -mpreferred-stack-boundary=2 ?
936AC_MSG_CHECKING([if gcc accepts -mpreferred-stack-boundary])
937
daywalker3664f562003-10-17 13:43:46 +0000938safe_CFLAGS=$CFLAGS
sewardj5b754b42002-06-03 22:53:35 +0000939CFLAGS="-mpreferred-stack-boundary=2"
940
941AC_TRY_COMPILE(, [
sewardj5b754b42002-06-03 22:53:35 +0000942int main () { return 0 ; }
sewardj5b754b42002-06-03 22:53:35 +0000943],
944[
945PREFERRED_STACK_BOUNDARY="-mpreferred-stack-boundary=2"
daywalker3664f562003-10-17 13:43:46 +0000946AC_MSG_RESULT([yes])
sewardj5b754b42002-06-03 22:53:35 +0000947], [
948PREFERRED_STACK_BOUNDARY=""
949AC_MSG_RESULT([no])
950])
daywalker3664f562003-10-17 13:43:46 +0000951CFLAGS=$safe_CFLAGS
sewardj5b754b42002-06-03 22:53:35 +0000952
953AC_SUBST(PREFERRED_STACK_BOUNDARY)
954
sewardj535c50f2005-06-04 23:14:53 +0000955
sewardjb5f6f512005-03-10 23:59:00 +0000956# does this compiler support -Wno-pointer-sign ?
bart56730cd2008-05-11 06:41:46 +0000957AC_MSG_CHECKING([if gcc accepts -Wno-pointer-sign])
sewardjb5f6f512005-03-10 23:59:00 +0000958
959safe_CFLAGS=$CFLAGS
960CFLAGS="-Wno-pointer-sign"
961
962AC_TRY_COMPILE(, [
963int main () { return 0 ; }
964],
965[
966no_pointer_sign=yes
967AC_MSG_RESULT([yes])
968], [
969no_pointer_sign=no
970AC_MSG_RESULT([no])
971])
972CFLAGS=$safe_CFLAGS
973
974if test x$no_pointer_sign = xyes; then
975 CFLAGS="$CFLAGS -Wno-pointer-sign"
976fi
977
sewardj535c50f2005-06-04 23:14:53 +0000978
tom1e946682005-10-12 11:27:33 +0000979# does this compiler support -Wdeclaration-after-statement ?
bart56730cd2008-05-11 06:41:46 +0000980AC_MSG_CHECKING([if gcc accepts -Wdeclaration-after-statement])
tom1e946682005-10-12 11:27:33 +0000981
982safe_CFLAGS=$CFLAGS
983CFLAGS="-Wdeclaration-after-statement"
984
985AC_TRY_COMPILE(, [
986int main () { return 0 ; }
987],
988[
tome9814c32005-10-12 11:30:43 +0000989declaration_after_statement=yes
sewardj72a547e2006-01-25 02:58:28 +0000990FLAG_WDECL_AFTER_STMT="-Wdeclaration-after-statement"
tom1e946682005-10-12 11:27:33 +0000991AC_MSG_RESULT([yes])
992], [
tome9814c32005-10-12 11:30:43 +0000993declaration_after_statement=no
sewardj72a547e2006-01-25 02:58:28 +0000994FLAG_WDECL_AFTER_STMT=""
tom1e946682005-10-12 11:27:33 +0000995AC_MSG_RESULT([no])
996])
997CFLAGS=$safe_CFLAGS
998
sewardj72a547e2006-01-25 02:58:28 +0000999AC_SUBST(FLAG_WDECL_AFTER_STMT)
1000
tome9814c32005-10-12 11:30:43 +00001001if test x$declaration_after_statement = xyes; then
tom1e946682005-10-12 11:27:33 +00001002 CFLAGS="$CFLAGS -Wdeclaration-after-statement"
1003fi
1004
sewardj00f1e622006-03-12 16:47:10 +00001005
bart9d865fa2008-06-23 12:11:49 +00001006# does this compiler support -Wno-format-zero-length ?
1007
1008AC_MSG_CHECKING([if gcc accepts -Wno-format-zero-length])
1009
1010safe_CFLAGS=$CFLAGS
1011CFLAGS="-Wno-format-zero-length"
1012
1013AC_TRY_COMPILE(
1014[ ],
1015[
1016 return 0;
1017],
1018[
1019AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [-Wno-format-zero-length])
1020AC_MSG_RESULT([yes])
1021],
1022[
1023AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [])
1024AC_MSG_RESULT([no])
1025])
1026CFLAGS=$safe_CFLAGS
1027
1028
bart56730cd2008-05-11 06:41:46 +00001029# does this compiler support -Wextra or the older -W ?
1030
1031AC_MSG_CHECKING([if gcc accepts -Wextra or -W])
1032
1033safe_CFLAGS=$CFLAGS
1034CFLAGS="-Wextra"
1035
1036AC_TRY_COMPILE(
1037[ ],
1038[
1039 return 0;
1040],
1041[
1042AC_SUBST([FLAG_W_EXTRA], [-Wextra])
1043AC_MSG_RESULT([-Wextra])
1044], [
1045 CFLAGS="-W"
1046 AC_TRY_COMPILE(
1047 [ ],
1048 [
1049 return 0;
1050 ],
1051 [
1052 AC_SUBST([FLAG_W_EXTRA], [-W])
1053 AC_MSG_RESULT([-W])
1054 ], [
1055 AC_SUBST([FLAG_W_EXTRA], [])
1056 AC_MSG_RESULT([not supported])
1057 ])
1058])
1059CFLAGS=$safe_CFLAGS
1060
1061
sewardja72c26d2007-05-01 13:44:08 +00001062# does this compiler support -fno-stack-protector ?
bart56730cd2008-05-11 06:41:46 +00001063AC_MSG_CHECKING([if gcc accepts -fno-stack-protector])
sewardja72c26d2007-05-01 13:44:08 +00001064
1065safe_CFLAGS=$CFLAGS
1066CFLAGS="-fno-stack-protector"
1067
1068AC_TRY_COMPILE(, [
1069int main () { return 0 ; }
1070],
1071[
1072no_stack_protector=yes
1073FLAG_FNO_STACK_PROTECTOR="-fno-stack-protector"
1074AC_MSG_RESULT([yes])
1075], [
1076no_stack_protector=no
1077FLAG_FNO_STACK_PROTECTOR=""
1078AC_MSG_RESULT([no])
1079])
1080CFLAGS=$safe_CFLAGS
1081
1082AC_SUBST(FLAG_FNO_STACK_PROTECTOR)
1083
1084if test x$no_stack_protector = xyes; then
1085 CFLAGS="$CFLAGS -fno-stack-protector"
1086fi
1087
1088
bart56730cd2008-05-11 06:41:46 +00001089# does this compiler support --param inline-unit-growth=... ?
1090
1091AC_MSG_CHECKING([if gcc accepts --param inline-unit-growth])
1092
1093safe_CFLAGS=$CFLAGS
1094CFLAGS="--param inline-unit-growth=900"
1095
1096AC_TRY_COMPILE(
1097[ ],
1098[
1099 return 0;
1100],
1101[
1102AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH],
1103 ["--param inline-unit-growth=900"])
1104AC_MSG_RESULT([yes])
1105], [
1106AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH], [""])
1107AC_MSG_RESULT([no])
1108])
1109CFLAGS=$safe_CFLAGS
1110
1111
tomd55121e2005-12-19 12:40:13 +00001112# does this compiler support __builtin_expect?
1113AC_MSG_CHECKING([if gcc supports __builtin_expect])
bart56730cd2008-05-11 06:41:46 +00001114
tomd55121e2005-12-19 12:40:13 +00001115AC_TRY_LINK(, [
1116return __builtin_expect(1, 1) ? 1 : 0
1117],
1118[
1119ac_have_builtin_expect=yes
1120AC_MSG_RESULT([yes])
1121], [
1122ac_have_builtin_expect=no
1123AC_MSG_RESULT([no])
1124])
1125if test x$ac_have_builtin_expect = xyes ; then
1126 AC_DEFINE(HAVE_BUILTIN_EXPECT, 1, [Define to 1 if gcc supports __builtin_expect.])
1127fi
1128
tom1e946682005-10-12 11:27:33 +00001129
bartcd529dc2008-06-26 08:43:12 +00001130# does this compiler have built-in functions for atomic memory access ?
1131AC_MSG_CHECKING([if gcc supports __sync_bool_compare_and_swap])
1132
1133AC_TRY_LINK(,
1134[
1135 int variable = 1;
1136 return __sync_bool_compare_and_swap(&variable, 1, 2) ? 1 : 0
1137],
1138[
1139 AC_MSG_RESULT([yes])
1140 AC_DEFINE(HAVE_BUILTIN_ATOMIC, 1, [Define to 1 if gcc supports __sync_bool_compare_and_swap() a.o.])
1141],
1142[
1143 AC_MSG_RESULT([no])
1144])
1145
1146
sewardj00f1e622006-03-12 16:47:10 +00001147# does the ppc assembler support "mtocrf" et al?
1148AC_MSG_CHECKING([if ppc32/64 as supports mtocrf/mfocrf])
1149
1150AC_TRY_COMPILE(, [
sewardjdd4cbe12006-03-12 17:27:44 +00001151__asm__ __volatile__("mtocrf 4,0");
1152__asm__ __volatile__("mfocrf 0,4");
sewardj00f1e622006-03-12 16:47:10 +00001153],
1154[
1155ac_have_as_ppc_mftocrf=yes
1156AC_MSG_RESULT([yes])
1157], [
1158ac_have_as_ppc_mftocrf=no
1159AC_MSG_RESULT([no])
1160])
1161if test x$ac_have_as_ppc_mftocrf = xyes ; then
1162 AC_DEFINE(HAVE_AS_PPC_MFTOCRF, 1, [Define to 1 if as supports mtocrf/mfocrf.])
1163fi
1164
1165
sewardjf0aabf82007-03-22 00:24:21 +00001166# does the x86/amd64 assembler understand SSE3 instructions?
sewardjfa18a262007-03-22 12:13:13 +00001167# Note, this doesn't generate a C-level symbol. It generates a
1168# automake-level symbol (BUILD_SSE3_TESTS), used in test Makefile.am's
sewardjf0aabf82007-03-22 00:24:21 +00001169AC_MSG_CHECKING([if x86/amd64 assembler speaks SSE3])
1170
1171AC_TRY_COMPILE(, [
1172 do { long long int x;
1173 __asm__ __volatile__("fisttpq (%0)" : :"r"(&x) ); }
1174 while (0)
1175],
1176[
1177ac_have_as_sse3=yes
1178AC_MSG_RESULT([yes])
1179], [
1180ac_have_as_sse3=no
1181AC_MSG_RESULT([no])
1182])
sewardjfa18a262007-03-22 12:13:13 +00001183
1184AM_CONDITIONAL(BUILD_SSE3_TESTS, test x$ac_have_as_sse3 = xyes)
sewardjf0aabf82007-03-22 00:24:21 +00001185
1186
sewardj6d6da5b2008-02-09 12:07:40 +00001187# Ditto for SSSE3 instructions (note extra S)
1188# Note, this doesn't generate a C-level symbol. It generates a
1189# automake-level symbol (BUILD_SSSE3_TESTS), used in test Makefile.am's
1190AC_MSG_CHECKING([if x86/amd64 assembler speaks SSSE3])
1191
1192AC_TRY_COMPILE(, [
1193 do { long long int x;
1194 __asm__ __volatile__(
1195 "pabsb (%0),%%xmm7" : : "r"(&x) : "xmm7" ); }
1196 while (0)
1197],
1198[
1199ac_have_as_ssse3=yes
1200AC_MSG_RESULT([yes])
1201], [
1202ac_have_as_ssse3=no
1203AC_MSG_RESULT([no])
1204])
1205
1206AM_CONDITIONAL(BUILD_SSSE3_TESTS, test x$ac_have_as_ssse3 = xyes)
1207
1208
sewardjb5f6f512005-03-10 23:59:00 +00001209# Check for TLS support in the compiler and linker
bartca9f2ad2008-06-02 07:14:20 +00001210if test "x${cross_compiling}" = "xno"; then
1211# Native compilation: check whether running a program using TLS succeeds.
1212# Linking only is not sufficient -- e.g. on Red Hat 7.3 linking TLS programs
1213# succeeds but running programs using TLS fails.
1214AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1215 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1216 [vg_cv_tls=$enableval],
1217 [AC_RUN_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
1218 [[return foo;]])],
1219 [vg_cv_tls=yes],
1220 [vg_cv_tls=no])])])
1221else
1222# Cross-compiling: check whether linking a program using TLS succeeds.
sewardjb5f6f512005-03-10 23:59:00 +00001223AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1224 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1225 [vg_cv_tls=$enableval],
bartcddeaf52008-05-25 15:58:11 +00001226 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
sewardjb5f6f512005-03-10 23:59:00 +00001227 [[return foo;]])],
1228 [vg_cv_tls=yes],
1229 [vg_cv_tls=no])])])
bartca9f2ad2008-06-02 07:14:20 +00001230fi
sewardjb5f6f512005-03-10 23:59:00 +00001231
1232if test "$vg_cv_tls" = yes; then
1233AC_DEFINE([HAVE_TLS], 1, [can use __thread to define thread-local variables])
1234fi
sewardj5b754b42002-06-03 22:53:35 +00001235
sewardj535c50f2005-06-04 23:14:53 +00001236
sewardjde4a1d02002-03-22 01:27:54 +00001237# Checks for header files.
1238AC_HEADER_STDC
bartf5ceec82008-04-26 07:45:10 +00001239AC_CHECK_HEADERS([ \
1240 endian.h \
1241 mqueue.h \
1242 sys/endian.h \
1243 sys/epoll.h \
1244 sys/eventfd.h \
bartce48fa92008-04-26 10:59:46 +00001245 sys/klog.h \
bartf5ceec82008-04-26 07:45:10 +00001246 sys/poll.h \
bart71bad292008-04-27 11:43:23 +00001247 sys/signal.h \
bartf5ceec82008-04-26 07:45:10 +00001248 sys/signalfd.h \
bart71bad292008-04-27 11:43:23 +00001249 sys/syscall.h \
1250 sys/time.h \
1251 sys/types.h \
bartf5ceec82008-04-26 07:45:10 +00001252 ])
sewardjde4a1d02002-03-22 01:27:54 +00001253
bart41ac62a2008-07-07 16:58:03 +00001254AC_LANG(C++)
1255AC_CHECK_HEADERS([ \
1256 QtCore/QMutex \
1257 QtCore/QSemaphore \
1258 QtCore/QThread \
1259 ])
1260AC_LANG(C)
sewardj535c50f2005-06-04 23:14:53 +00001261
sewardjde4a1d02002-03-22 01:27:54 +00001262# Checks for typedefs, structures, and compiler characteristics.
sewardjde4a1d02002-03-22 01:27:54 +00001263AC_TYPE_UID_T
1264AC_TYPE_OFF_T
1265AC_TYPE_SIZE_T
1266AC_HEADER_TIME
1267
sewardj535c50f2005-06-04 23:14:53 +00001268
sewardjde4a1d02002-03-22 01:27:54 +00001269# Checks for library functions.
1270AC_FUNC_MEMCMP
1271AC_FUNC_MMAP
1272AC_TYPE_SIGNAL
1273
bart71bad292008-04-27 11:43:23 +00001274AC_CHECK_LIB([rt], [clock_gettime])
bart41ac62a2008-07-07 16:58:03 +00001275AC_CHECK_LIB([QtCore], [_ZN6QMutex4lockEv]) # QMutex::lock()
1276
1277# AC_CHECK_LIB adds any library found to the variable LIBS, and links these
1278# libraries with any shared object and/or executable. This is NOT what we
1279# want for e.g. vgpreload_core-x86-linux.so
1280LIBS=""
bart71bad292008-04-27 11:43:23 +00001281
bartf5ceec82008-04-26 07:45:10 +00001282AC_CHECK_FUNCS([ \
bart71bad292008-04-27 11:43:23 +00001283 clock_gettime\
bartf5ceec82008-04-26 07:45:10 +00001284 epoll_create \
1285 epoll_pwait \
bartf5ceec82008-04-26 07:45:10 +00001286 floor \
bartce48fa92008-04-26 10:59:46 +00001287 klogctl \
bartf5ceec82008-04-26 07:45:10 +00001288 mallinfo \
1289 memchr \
1290 memset \
1291 mkdir \
1292 ppoll \
1293 semtimedop \
1294 signalfd \
bart71bad292008-04-27 11:43:23 +00001295 syscall \
bartf5ceec82008-04-26 07:45:10 +00001296 strchr \
1297 strdup \
1298 strpbrk \
1299 strrchr \
1300 strstr \
1301 timerfd \
1302 utimensat \
1303 ])
sewardjde4a1d02002-03-22 01:27:54 +00001304
sewardj80637752006-03-02 13:48:21 +00001305
sewardj03d86f22006-10-17 00:57:24 +00001306# Do we have a useable MPI setup on the primary and/or secondary targets?
1307# On Linux, by default, assumes mpicc and -m32/-m64
1308# On AIX, by default, assumes mpxlc and -q32/-q64
sewardje9fa5062006-03-12 18:29:18 +00001309# Note: this is a kludge in that it assumes the specified mpicc
sewardj03d86f22006-10-17 00:57:24 +00001310# understands -m32/-m64/-q32/-q64 regardless of what is specified using
1311# --with-mpicc=.
sewardj0ad46092006-03-02 17:09:16 +00001312MPI_CC="mpicc"
sewardj03d86f22006-10-17 00:57:24 +00001313if test x$VG_PLATFORM_PRI = xPPC32_AIX5 \
1314 -o x$VG_PLATFORM_PRI = xPPC64_AIX5 ; then
1315 MPI_CC="mpxlc"
1316fi
1317
sewardje9fa5062006-03-12 18:29:18 +00001318mflag_primary=
1319if test x$VG_PLATFORM_PRI = xX86_LINUX \
1320 -o x$VG_PLATFORM_PRI = xPPC32_LINUX ; then
1321 mflag_primary=$FLAG_M32
1322elif test x$VG_PLATFORM_PRI = xAMD64_LINUX \
1323 -o x$VG_PLATFORM_PRI = xPPC64_LINUX ; then
1324 mflag_primary=$FLAG_M64
sewardj03d86f22006-10-17 00:57:24 +00001325elif test x$VG_PLATFORM_PRI = xPPC32_AIX5 ; then
1326 mflag_primary=-q32
1327elif test x$VG_PLATFORM_PRI = xPPC64_AIX5 ; then
1328 mflag_primary=-q64
sewardje9fa5062006-03-12 18:29:18 +00001329fi
1330
sewardj03d86f22006-10-17 00:57:24 +00001331mflag_secondary=
1332if test x$VG_PLATFORM_SEC = xX86_LINUX \
1333 -o x$VG_PLATFORM_SEC = xPPC32_LINUX ; then
1334 mflag_secondary=$FLAG_M32
1335elif test x$VG_PLATFORM_SEC = xPPC32_AIX5 ; then
1336 mflag_secondary=-q32
1337fi
1338
1339
sewardj0ad46092006-03-02 17:09:16 +00001340AC_ARG_WITH(mpicc,
sewardjb70a6132006-05-27 21:14:09 +00001341 [ --with-mpicc= Specify name of MPI2-ised C compiler],
sewardj0ad46092006-03-02 17:09:16 +00001342 MPI_CC=$withval
1343)
sewardj03d86f22006-10-17 00:57:24 +00001344AC_SUBST(MPI_CC)
1345
1346## See if MPI_CC works for the primary target
1347##
1348AC_MSG_CHECKING([primary target for usable MPI2-compliant C compiler and mpi.h])
sewardj0ad46092006-03-02 17:09:16 +00001349saved_CC=$CC
sewardjde4f3842006-03-09 02:41:41 +00001350saved_CFLAGS=$CFLAGS
sewardj0ad46092006-03-02 17:09:16 +00001351CC=$MPI_CC
sewardje9fa5062006-03-12 18:29:18 +00001352CFLAGS=$mflag_primary
sewardjd3fcc642006-03-09 02:49:56 +00001353AC_TRY_LINK([
sewardj1a85e602006-03-08 15:26:10 +00001354#include <mpi.h>
1355#include <stdio.h>
sewardjde4f3842006-03-09 02:41:41 +00001356],[
1357 int r = MPI_Init(NULL,NULL);
1358 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1359 return r;
1360], [
sewardj03d86f22006-10-17 00:57:24 +00001361ac_have_mpi2_pri=yes
sewardj1a85e602006-03-08 15:26:10 +00001362AC_MSG_RESULT([yes, $MPI_CC])
sewardj80637752006-03-02 13:48:21 +00001363], [
sewardj03d86f22006-10-17 00:57:24 +00001364ac_have_mpi2_pri=no
sewardj80637752006-03-02 13:48:21 +00001365AC_MSG_RESULT([no])
1366])
sewardj0ad46092006-03-02 17:09:16 +00001367CC=$saved_CC
sewardjde4f3842006-03-09 02:41:41 +00001368CFLAGS=$saved_CFLAGS
sewardj03d86f22006-10-17 00:57:24 +00001369AM_CONDITIONAL(BUILD_MPIWRAP_PRI, test x$ac_have_mpi2_pri = xyes)
sewardj80637752006-03-02 13:48:21 +00001370
sewardj03d86f22006-10-17 00:57:24 +00001371## See if MPI_CC works for the secondary target. Complication: what if
1372## there is no secondary target? We need this to then fail.
1373## Kludge this by making MPI_CC something which will surely fail in
1374## such a case.
1375##
1376AC_MSG_CHECKING([secondary target for usable MPI2-compliant C compiler and mpi.h])
1377saved_CC=$CC
1378saved_CFLAGS=$CFLAGS
1379if test x$VG_PLATFORM_SEC = x ; then
1380 CC="$MPI_CC this will surely fail"
1381else
1382 CC=$MPI_CC
1383fi
1384CFLAGS=$mflag_secondary
1385AC_TRY_LINK([
1386#include <mpi.h>
1387#include <stdio.h>
1388],[
1389 int r = MPI_Init(NULL,NULL);
1390 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1391 return r;
1392], [
1393ac_have_mpi2_sec=yes
1394AC_MSG_RESULT([yes, $MPI_CC])
1395], [
1396ac_have_mpi2_sec=no
1397AC_MSG_RESULT([no])
1398])
1399CC=$saved_CC
1400CFLAGS=$saved_CFLAGS
1401AM_CONDITIONAL(BUILD_MPIWRAP_SEC, test x$ac_have_mpi2_sec = xyes)
sewardj80637752006-03-02 13:48:21 +00001402
1403
bart41ac62a2008-07-07 16:58:03 +00001404# does this compiler have the include file <Qt/qmutex.h> and does it have
1405# libQtCore.so ?
1406
1407AC_MSG_CHECKING([for Qt4 core library])
1408
bart69953752008-07-08 08:53:15 +00001409AC_TRY_COMPILE([ ],
1410[
1411#if ! defined(HAVE_LIBQTCORE) || ! defined(HAVE_QTCORE_QMUTEX)
1412#error Qt4 not supported.
1413#endif
1414 return 0;
1415],
1416[
bart41ac62a2008-07-07 16:58:03 +00001417 ac_have_qtcore=yes
1418 AC_MSG_RESULT([yes])
bart69953752008-07-08 08:53:15 +00001419],
1420[
bart41ac62a2008-07-07 16:58:03 +00001421 ac_have_qtcore=no
1422 AC_MSG_RESULT([no])
bart69953752008-07-08 08:53:15 +00001423])
bart41ac62a2008-07-07 16:58:03 +00001424
1425AM_CONDITIONAL([HAVE_QTCORE], [test x$ac_have_qtcore = xyes])
1426
1427
sewardj80637752006-03-02 13:48:21 +00001428# -------------------- ok. We're done. --------------------
1429
gobrye721a522002-03-22 13:38:30 +00001430AC_OUTPUT(
sewardjde4a1d02002-03-22 01:27:54 +00001431 Makefile
njn25cac76cb2002-09-23 11:21:57 +00001432 valgrind.spec
muellerbddd6072003-11-19 21:50:07 +00001433 valgrind.pc
dirk07596a22008-04-25 11:33:30 +00001434 glibc-2.X.supp
njn254d542432002-09-23 16:09:39 +00001435 docs/Makefile
njn3e986b22004-11-30 10:43:45 +00001436 docs/lib/Makefile
1437 docs/images/Makefile
njnf7c00b12005-07-19 21:46:19 +00001438 docs/internals/Makefile
njn3e986b22004-11-30 10:43:45 +00001439 docs/xml/Makefile
njn254d542432002-09-23 16:09:39 +00001440 tests/Makefile
njnc2e7f482002-09-27 08:44:17 +00001441 tests/vg_regtest
njnec0c27a2005-12-10 23:11:28 +00001442 perf/Makefile
1443 perf/vg_perf
njn254d542432002-09-23 16:09:39 +00001444 include/Makefile
sewardj0f8881b2006-10-18 01:16:57 +00001445 include/vki/Makefile
njn7a6e7462002-11-09 17:53:30 +00001446 auxprogs/Makefile
njn25ab726032002-09-23 16:24:41 +00001447 coregrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001448 memcheck/Makefile
1449 memcheck/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001450 memcheck/tests/amd64/Makefile
cerion85665ca2005-06-20 15:51:07 +00001451 memcheck/tests/ppc32/Makefile
sewardj2c48c7b2005-11-29 13:05:56 +00001452 memcheck/tests/ppc64/Makefile
njnc6168192004-11-29 13:54:10 +00001453 memcheck/tests/x86/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001454 memcheck/docs/Makefile
1455 cachegrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001456 cachegrind/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001457 cachegrind/tests/amd64/Makefile
cerion85665ca2005-06-20 15:51:07 +00001458 cachegrind/tests/ppc32/Makefile
sewardj2c48c7b2005-11-29 13:05:56 +00001459 cachegrind/tests/ppc64/Makefile
njnc6168192004-11-29 13:54:10 +00001460 cachegrind/tests/x86/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001461 cachegrind/docs/Makefile
njnf2df9b52002-10-04 11:35:47 +00001462 cachegrind/cg_annotate
weidendoa17f2a32006-03-20 10:27:30 +00001463 callgrind/Makefile
1464 callgrind/callgrind_annotate
1465 callgrind/callgrind_control
1466 callgrind/tests/Makefile
1467 callgrind/docs/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001468 helgrind/Makefile
njnf2df9b52002-10-04 11:35:47 +00001469 helgrind/tests/Makefile
njn83157fc2002-10-03 10:07:34 +00001470 helgrind/docs/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001471 massif/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001472 massif/tests/Makefile
njn734b8052007-11-01 04:40:37 +00001473 massif/perf/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001474 massif/docs/Makefile
njnd5a8d242007-11-02 20:44:57 +00001475 massif/ms_print
njn25cac76cb2002-09-23 11:21:57 +00001476 lackey/Makefile
njnf2df9b52002-10-04 11:35:47 +00001477 lackey/tests/Makefile
njn83157fc2002-10-03 10:07:34 +00001478 lackey/docs/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001479 none/Makefile
1480 none/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001481 none/tests/amd64/Makefile
cerion85665ca2005-06-20 15:51:07 +00001482 none/tests/ppc32/Makefile
sewardj2c48c7b2005-11-29 13:05:56 +00001483 none/tests/ppc64/Makefile
njnc6168192004-11-29 13:54:10 +00001484 none/tests/x86/Makefile
njn9bc8c002002-10-02 13:49:13 +00001485 none/docs/Makefile
sewardj99a2ceb2007-11-09 12:30:36 +00001486 exp-omega/Makefile
1487 exp-omega/tests/Makefile
1488 exp-omega/docs/Makefile
bartccf17de2008-07-04 15:14:35 +00001489 drd/Makefile
1490 drd/docs/Makefile
1491 drd/scripts/download-and-build-splash2
1492 drd/tests/Makefile
bart0b2b4622008-06-17 19:19:16 +00001493)
gobry3b777892002-04-04 09:18:39 +00001494
1495cat<<EOF
1496
sewardj01262142006-01-04 01:20:28 +00001497 Primary build target: ${VG_PLATFORM_PRI}
sewardj80637752006-03-02 13:48:21 +00001498 Secondary build target: ${VG_PLATFORM_SEC}
sewardj01262142006-01-04 01:20:28 +00001499 Default supp files: ${DEFAULT_SUPP}
gobry3b777892002-04-04 09:18:39 +00001500
gobry3b777892002-04-04 09:18:39 +00001501EOF
1502
1503cat<<EOF > default.supp
1504# This is a generated file, composed of the following suppression rules:
1505#
1506# ${DEFAULT_SUPP}
1507#
1508
1509EOF
1510
1511for file in ${DEFAULT_SUPP} ; do
1512 cat ${srcdir}/$file >> default.supp
1513done