blob: 1e3892fc568687b3e3a77c5ad6f771460b416fb9 [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.
sewardj8d37f362009-01-05 17:14:12 +000011AC_INIT(Valgrind, 3.5.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#----------------------------------------------------------------------------
njn8738c282004-11-23 16:31:56 +000019# Where is VEX ?
njn7fd6d382009-01-22 21:56:32 +000020#----------------------------------------------------------------------------
njnfe408942004-11-23 17:52:24 +000021# Nb: For the 2nd arg, the help string, AS_HELP_STRING is the proper way, but
22# older autoconfs don't support it... here's what it would say:
23#
sewardj85a9dca2005-07-26 10:42:57 +000024# AS_HELP_STRING([--with-vex], [Vex directory]),
njnfe408942004-11-23 17:52:24 +000025#
njn8738c282004-11-23 16:31:56 +000026AC_ARG_WITH(vex,
sewardj85a9dca2005-07-26 10:42:57 +000027 [ --with-vex=/path/to/vex/dir Vex directory],
njn8738c282004-11-23 16:31:56 +000028[
29 AC_CHECK_FILE($withval/pub/libvex.h,
30 [VEX_DIR=$withval],
31 [AC_MSG_ERROR([Directory '$withval' does not exist, or does not contain Vex])])
32],
33[
njn17adf1e2005-09-16 03:59:37 +000034 VEX_DIR='$(top_srcdir)/VEX'
njn8738c282004-11-23 16:31:56 +000035])
sewardj50629ec2004-11-22 13:44:11 +000036AC_SUBST(VEX_DIR)
37
njn657d9512005-06-24 15:20:52 +000038# "make distcheck" first builds a tarball, then extracts it.
39# Then it creates a build directory different from the extracted sources
40# (called _build), and issues
41#
42# ../configure $(DISTCHECK_CONFIGURE_FLAGS)
43#
44# and then builds, runs "make check", installs using DESTDIR, runs make
45# installcheck, uninstalls, checks whether the installed base is empty
46# again, then does yet another "make dist" and compares the resulting
47# tarball with the one it started off with for identical content. Then it
48# tests "make distclean" for no leftover files.
49#
50# So this line means: when doing "make dist", use the same --with-vex value
51# that you used when running configure to configure this tree in the first
52# place.
53AC_SUBST([DISTCHECK_CONFIGURE_FLAGS], [--with-vex=$VEX_DIR])
54
njn7fd6d382009-01-22 21:56:32 +000055#----------------------------------------------------------------------------
56# Checks for various programs.
57#----------------------------------------------------------------------------
sewardjb5f6f512005-03-10 23:59:00 +000058CFLAGS="-Wno-long-long"
gobrye721a522002-03-22 13:38:30 +000059
sewardjde4a1d02002-03-22 01:27:54 +000060AC_PROG_LN_S
61AC_PROG_CC
bart0affa492008-03-18 17:53:09 +000062AM_PROG_CC_C_O
sewardjde4a1d02002-03-22 01:27:54 +000063AC_PROG_CPP
njn25e49d8e72002-09-23 09:36:25 +000064AC_PROG_CXX
sewardjde4a1d02002-03-22 01:27:54 +000065AC_PROG_RANLIB
66
bartcddeaf52008-05-25 15:58:11 +000067# If no AR variable was specified, look up the name of the archiver. Otherwise
68# do not touch the AR variable.
69if test "x$AR" = "x"; then
bart325cd972009-04-04 14:36:51 +000070 AC_PATH_PROGS([AR], [`echo $LD | sed 's/ld$/ar/'` "ar"], [ar])
bartcddeaf52008-05-25 15:58:11 +000071fi
72AC_ARG_VAR([AR],[Archiver command])
73
gobrye721a522002-03-22 13:38:30 +000074# Check for the compiler support
75if test "${GCC}" != "yes" ; then
76 AC_MSG_ERROR([Valgrind relies on GCC to be compiled])
77fi
78
sewardj2f685952002-12-22 19:32:23 +000079# figure out where perl lives
80AC_PATH_PROG(PERL, perl)
81
njn9315df32003-04-16 20:50:50 +000082# figure out where gdb lives
sewardjf8722ca2008-11-17 00:20:45 +000083AC_PATH_PROG(GDB, gdb, "/no/gdb/was/found/at/configure/time")
njnfe408942004-11-23 17:52:24 +000084AC_DEFINE_UNQUOTED(GDB_PATH, "$GDB", [path to GDB])
njn9315df32003-04-16 20:50:50 +000085
daywalker48ccca52002-04-15 00:31:58 +000086# some older automake's don't have it so try something on our own
87ifdef([AM_PROG_AS],[AM_PROG_AS],
88[
gobry1be19852002-03-26 20:44:55 +000089AS="${CC}"
90AC_SUBST(AS)
gobry3b777892002-04-04 09:18:39 +000091
gobry1be19852002-03-26 20:44:55 +000092ASFLAGS=""
93AC_SUBST(ASFLAGS)
daywalker48ccca52002-04-15 00:31:58 +000094])
gobry3b777892002-04-04 09:18:39 +000095
gobry3b777892002-04-04 09:18:39 +000096
njn0d2e58f2009-02-25 04:57:56 +000097# Check if 'diff' supports -u (universal diffs) and use it if possible.
98
99AC_MSG_CHECKING([for diff -u])
100AC_SUBST(DIFF)
101
102# Comparing two identical files results in 0, unless -u isn't supported (as
103# it's not on AIX).
njn31f665e2009-02-26 21:25:50 +0000104tmpfile="tmp-xxx-yyy-zzz"
105touch $tmpfile;
106if diff -u $tmpfile $tmpfile ; then
njn0d2e58f2009-02-25 04:57:56 +0000107 AC_MSG_RESULT([yes])
108 DIFF="diff -u"
109else
110 AC_MSG_RESULT([no])
111 DIFF="diff"
112fi
njn31f665e2009-02-26 21:25:50 +0000113rm $tmpfile
njn0d2e58f2009-02-25 04:57:56 +0000114
115
sewardj535c50f2005-06-04 23:14:53 +0000116# We don't want gcc < 3.0
gobrye721a522002-03-22 13:38:30 +0000117AC_MSG_CHECKING([for a supported version of gcc])
118
sewardjf33b4332008-07-18 18:20:42 +0000119[gcc_version=`${CC} --version | head -n 1 | sed 's/^[^0-9]*\([0-9.]*\).*$/\1/'`]
gobrye721a522002-03-22 13:38:30 +0000120
121case "${gcc_version}" in
bart76719bf2008-04-19 07:47:56 +0000122 2.*)
gobrye721a522002-03-22 13:38:30 +0000123 AC_MSG_RESULT([no (${gcc_version})])
sewardj535c50f2005-06-04 23:14:53 +0000124 AC_MSG_ERROR([please use a recent (>= gcc-3.0) version of gcc])
125 ;;
gobrye721a522002-03-22 13:38:30 +0000126 *)
127 AC_MSG_RESULT([ok (${gcc_version})])
128 ;;
129esac
130
njn7fd6d382009-01-22 21:56:32 +0000131#----------------------------------------------------------------------------
132# Arch/OS/platform tests.
133#----------------------------------------------------------------------------
134# We create a number of arch/OS/platform-related variables. We prefix them
135# all with "VGCONF_" which indicates that they are defined at
136# configure-time, and distinguishes them from the VGA_*/VGO_*/VGP_*
137# variables used when compiling C files.
sewardj03d86f22006-10-17 00:57:24 +0000138
sewardjde4a1d02002-03-22 01:27:54 +0000139AC_CANONICAL_HOST
140
141AC_MSG_CHECKING([for a supported CPU])
sewardjbc692db2006-01-04 03:31:07 +0000142
njn7fd6d382009-01-22 21:56:32 +0000143# ARCH_MAX reflects the most that this CPU can do: for example if it
144# is a 64-bit capable PowerPC, then it must be set to ppc64 and not ppc32.
145# Ditto for amd64. It is used for more configuration below, but is not used
146# outside this file.
gobrye721a522002-03-22 13:38:30 +0000147case "${host_cpu}" in
sewardjde4a1d02002-03-22 01:27:54 +0000148 i?86)
149 AC_MSG_RESULT([ok (${host_cpu})])
njn7fd6d382009-01-22 21:56:32 +0000150 ARCH_MAX="x86"
sewardjde4a1d02002-03-22 01:27:54 +0000151 ;;
152
njnfe408942004-11-23 17:52:24 +0000153 x86_64)
154 AC_MSG_RESULT([ok (${host_cpu})])
njn7fd6d382009-01-22 21:56:32 +0000155 ARCH_MAX="amd64"
njnfe408942004-11-23 17:52:24 +0000156 ;;
157
sewardj2c48c7b2005-11-29 13:05:56 +0000158 powerpc64)
njn7fd6d382009-01-22 21:56:32 +0000159 # This value can only happen on Linux, not on AIX
sewardj2c48c7b2005-11-29 13:05:56 +0000160 AC_MSG_RESULT([ok (${host_cpu})])
njn7fd6d382009-01-22 21:56:32 +0000161 ARCH_MAX="ppc64"
sewardj2c48c7b2005-11-29 13:05:56 +0000162 ;;
163
164 powerpc)
njn7fd6d382009-01-22 21:56:32 +0000165 # Complexity. 'powerpc' on AIX implies a 64-bit capable CPU.
166 # Whereas in Linux that means only a 32-bit capable CPU.
cerion85665ca2005-06-20 15:51:07 +0000167 AC_MSG_RESULT([ok (${host_cpu})])
sewardj03d86f22006-10-17 00:57:24 +0000168 case "${host_os}" in
169 aix5.*)
njn7fd6d382009-01-22 21:56:32 +0000170 ARCH_MAX="ppc64"
sewardj03d86f22006-10-17 00:57:24 +0000171 ;;
172 *)
njn7fd6d382009-01-22 21:56:32 +0000173 ARCH_MAX="ppc32"
sewardj03d86f22006-10-17 00:57:24 +0000174 ;;
175 esac
nethercote9bcc9062004-10-13 13:50:01 +0000176 ;;
177
sewardjde4a1d02002-03-22 01:27:54 +0000178 *)
179 AC_MSG_RESULT([no (${host_cpu})])
nethercote81d5c662004-10-13 13:18:51 +0000180 AC_MSG_ERROR([Unsupported host architecture. Sorry])
sewardjde4a1d02002-03-22 01:27:54 +0000181 ;;
182esac
183
njn7fd6d382009-01-22 21:56:32 +0000184#----------------------------------------------------------------------------
185
sewardj86e992f2006-01-28 18:39:09 +0000186# Sometimes it's convenient to subvert the bi-arch build system and
187# just have a single build even though the underlying platform is
188# capable of both. Hence handle --enable-only64bit and
189# --enable-only32bit. Complain if both are issued :-)
njn7fd6d382009-01-22 21:56:32 +0000190# [Actually, if either of these options are used, I think both get built,
191# but only one gets installed. So if you use an in-place build, both can be
192# used. --njn]
sewardj86e992f2006-01-28 18:39:09 +0000193
194# Check if a 64-bit only build has been requested
195AC_CACHE_CHECK([for a 64-bit only build], vg_cv_only64bit,
196 [AC_ARG_ENABLE(only64bit,
197 [ --enable-only64bit do a 64-bit only build],
198 [vg_cv_only64bit=$enableval],
199 [vg_cv_only64bit=no])])
200
201# Check if a 32-bit only build has been requested
202AC_CACHE_CHECK([for a 32-bit only build], vg_cv_only32bit,
203 [AC_ARG_ENABLE(only32bit,
204 [ --enable-only32bit do a 32-bit only build],
205 [vg_cv_only32bit=$enableval],
206 [vg_cv_only32bit=no])])
207
208# Stay sane
209if test x$vg_cv_only64bit = xyes -a x$vg_cv_only32bit = xyes; then
210 AC_MSG_ERROR(
211 [Nonsensical: both --enable-only64bit and --enable-only32bit.])
212fi
213
njn7fd6d382009-01-22 21:56:32 +0000214#----------------------------------------------------------------------------
sewardj86e992f2006-01-28 18:39:09 +0000215
njn311303f2009-02-06 03:46:50 +0000216# VGCONF_OS is the primary build OS, eg. "linux". It is passed in to
217# compilation of many C files via -VGO_$(VGCONF_OS) and
218# -VGP_$(VGCONF_ARCH_PRI)_$(VGCONF_OS).
sewardjde4a1d02002-03-22 01:27:54 +0000219AC_MSG_CHECKING([for a supported OS])
njn7fd6d382009-01-22 21:56:32 +0000220AC_SUBST(VGCONF_OS)
sewardjde4a1d02002-03-22 01:27:54 +0000221
gobrye721a522002-03-22 13:38:30 +0000222case "${host_os}" in
mueller8c68e042004-01-03 15:21:14 +0000223 *linux*)
sewardjde4a1d02002-03-22 01:27:54 +0000224 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000225 VGCONF_OS="linux"
mueller8c68e042004-01-03 15:21:14 +0000226
227 # Ok, this is linux. Check the kernel version
228 AC_MSG_CHECKING([for the kernel version])
229
230 kernel=`uname -r`
231
232 case "${kernel}" in
233 2.6.*)
234 AC_MSG_RESULT([2.6 family (${kernel})])
235 AC_DEFINE([KERNEL_2_6], 1, [Define to 1 if you're using Linux 2.6.x])
236 ;;
237
238 2.4.*)
239 AC_MSG_RESULT([2.4 family (${kernel})])
240 AC_DEFINE([KERNEL_2_4], 1, [Define to 1 if you're using Linux 2.4.x])
241 ;;
242
mueller8c68e042004-01-03 15:21:14 +0000243 *)
244 AC_MSG_RESULT([unsupported (${kernel})])
nethercote4fa681f2004-11-08 17:51:39 +0000245 AC_MSG_ERROR([Valgrind works on kernels 2.4, 2.6])
mueller8c68e042004-01-03 15:21:14 +0000246 ;;
247 esac
248
249 ;;
250
sewardj03d86f22006-10-17 00:57:24 +0000251 aix5.1.*)
252 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000253 VGCONF_OS="aix5"
sewardj03d86f22006-10-17 00:57:24 +0000254 ;;
255 aix5.2.*)
256 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000257 VGCONF_OS="aix5"
sewardj03d86f22006-10-17 00:57:24 +0000258 ;;
259 aix5.3.*)
260 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000261 VGCONF_OS="aix5"
sewardj03d86f22006-10-17 00:57:24 +0000262 ;;
263
mueller8c68e042004-01-03 15:21:14 +0000264 *freebsd*)
265 AC_MSG_RESULT([ok (${host_os})])
njn7fd6d382009-01-22 21:56:32 +0000266 VGCONF_OS="freebsd"
sewardjde4a1d02002-03-22 01:27:54 +0000267 ;;
268
269 *)
270 AC_MSG_RESULT([no (${host_os})])
mueller8c68e042004-01-03 15:21:14 +0000271 AC_MSG_ERROR([Valgrind is operating system specific. Sorry. Please consider doing a port.])
sewardjde4a1d02002-03-22 01:27:54 +0000272 ;;
273esac
274
njn7fd6d382009-01-22 21:56:32 +0000275#----------------------------------------------------------------------------
276
tomd6398392006-06-07 17:44:36 +0000277# If we are building on a 64 bit platform test to see if the system
278# supports building 32 bit programs and disable 32 bit support if it
279# does not support building 32 bit programs
280
njn7fd6d382009-01-22 21:56:32 +0000281case "$ARCH_MAX-$VGCONF_OS" in
tomd6398392006-06-07 17:44:36 +0000282 amd64-linux|ppc64-linux)
283 AC_MSG_CHECKING([for 32 bit build support])
284 safe_CFLAGS=$CFLAGS
285 CFLAGS="-m32"
286 AC_TRY_LINK(, [
njn9890ee12009-01-21 22:25:50 +0000287 return 0;
tomd6398392006-06-07 17:44:36 +0000288 ],
289 [
290 AC_MSG_RESULT([yes])
291 ], [
292 vg_cv_only64bit="yes"
293 AC_MSG_RESULT([no])
294 ])
295 CFLAGS=$safe_CFLAGS;;
296esac
297
298if test x$vg_cv_only64bit = xyes -a x$vg_cv_only32bit = xyes; then
299 AC_MSG_ERROR(
300 [--enable-only32bit was specified but system does not support 32 bit builds])
301fi
nethercote888ecb72004-08-23 14:54:40 +0000302
njn7fd6d382009-01-22 21:56:32 +0000303#----------------------------------------------------------------------------
304
njn311303f2009-02-06 03:46:50 +0000305# VGCONF_ARCH_PRI is the arch for the primary build target, eg. "amd64". By
306# default it's the same as ARCH_MAX. But if, say, we do a build on an amd64
307# machine, but --enable-only32bit has been requested, then ARCH_MAX (see
308# above) will be "amd64" since that reflects the most that this cpu can do,
309# but VGCONF_ARCH_PRI will be downgraded to "x86", since that reflects the
310# arch corresponding to the primary build (VGCONF_PLATFORM_PRI_CAPS). It is
njn7fd6d382009-01-22 21:56:32 +0000311# passed in to compilation of many C files via -VGA_$(VGCONF_ARCH_PRI) and
312# -VGP_$(VGCONF_ARCH_PRI)_$(VGCONF_OS).
313AC_SUBST(VGCONF_ARCH_PRI)
314
njn311303f2009-02-06 03:46:50 +0000315# VGCONF_PLATFORM_PRI_CAPS is the primary build target, eg. "AMD64_LINUX".
316# The entire system, including regression and performance tests, will be
317# built for this target. The "_CAPS" indicates that the name is in capital
318# letters, and it also uses '_' rather than '-' as a separator, because it's
njn7fd6d382009-01-22 21:56:32 +0000319# used to create various Makefile variables, which are all in caps by
njn311303f2009-02-06 03:46:50 +0000320# convention and cannot contain '-' characters. This is in contrast to
321# VGCONF_ARCH_PRI and VGCONF_OS which are not in caps.
njn7fd6d382009-01-22 21:56:32 +0000322AC_SUBST(VGCONF_PLATFORM_PRI_CAPS)
323
324# VGCONF_PLATFORM_SEC_CAPS is the secondary build target, if there is one.
325# Valgrind and tools will also be built for this target, but not the
326# regression or performance tests.
sewardj01262142006-01-04 01:20:28 +0000327#
njn7fd6d382009-01-22 21:56:32 +0000328# By default, the primary arch is the same as the "max" arch, as commented
329# above (at the definition of ARCH_MAX). We may choose to downgrade it in
330# the big case statement just below here, in the case where we're building
331# on a 64 bit machine but have been requested only to do a 32 bit build.
332AC_SUBST(VGCONF_PLATFORM_SEC_CAPS)
333
sewardj01262142006-01-04 01:20:28 +0000334AC_MSG_CHECKING([for a supported CPU/OS combination])
nethercote888ecb72004-08-23 14:54:40 +0000335
njn7fd6d382009-01-22 21:56:32 +0000336case "$ARCH_MAX-$VGCONF_OS" in
sewardj01262142006-01-04 01:20:28 +0000337 x86-linux)
njn7fd6d382009-01-22 21:56:32 +0000338 VGCONF_ARCH_PRI="x86"
339 VGCONF_PLATFORM_PRI_CAPS="X86_LINUX"
340 VGCONF_PLATFORM_SEC_CAPS=""
njnd74b0ef2009-01-20 06:06:52 +0000341 valt_load_address_normal="0x38000000"
342 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000343 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000344 ;;
345 amd64-linux)
sewardj86e992f2006-01-28 18:39:09 +0000346 if test x$vg_cv_only64bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000347 VGCONF_ARCH_PRI="amd64"
348 VGCONF_PLATFORM_PRI_CAPS="AMD64_LINUX"
349 VGCONF_PLATFORM_SEC_CAPS=""
sewardj86e992f2006-01-28 18:39:09 +0000350 elif test x$vg_cv_only32bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000351 VGCONF_ARCH_PRI="x86"
352 VGCONF_PLATFORM_PRI_CAPS="X86_LINUX"
353 VGCONF_PLATFORM_SEC_CAPS=""
sewardj86e992f2006-01-28 18:39:09 +0000354 else
njn7fd6d382009-01-22 21:56:32 +0000355 VGCONF_ARCH_PRI="amd64"
356 VGCONF_PLATFORM_PRI_CAPS="AMD64_LINUX"
357 VGCONF_PLATFORM_SEC_CAPS="X86_LINUX"
sewardj86e992f2006-01-28 18:39:09 +0000358 fi
njnd74b0ef2009-01-20 06:06:52 +0000359 valt_load_address_normal="0x38000000"
360 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000361 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000362 ;;
363 ppc32-linux)
njn7fd6d382009-01-22 21:56:32 +0000364 VGCONF_ARCH_PRI="ppc32"
365 VGCONF_PLATFORM_PRI_CAPS="PPC32_LINUX"
366 VGCONF_PLATFORM_SEC_CAPS=""
njnd74b0ef2009-01-20 06:06:52 +0000367 valt_load_address_normal="0x38000000"
368 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000369 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000370 ;;
sewardj03d86f22006-10-17 00:57:24 +0000371 ppc64-aix5)
372 if test x$vg_cv_only64bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000373 VGCONF_ARCH_PRI="ppc64"
374 VGCONF_PLATFORM_PRI_CAPS="PPC64_AIX5"
375 VGCONF_PLATFORM_SEC_CAPS=""
sewardj03d86f22006-10-17 00:57:24 +0000376 elif test x$vg_cv_only32bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000377 VGCONF_ARCH_PRI="ppc32"
378 VGCONF_PLATFORM_PRI_CAPS="PPC32_AIX5"
379 VGCONF_PLATFORM_SEC_CAPS=""
sewardj03d86f22006-10-17 00:57:24 +0000380 else
njn7fd6d382009-01-22 21:56:32 +0000381 VGCONF_ARCH_PRI="ppc64"
382 VGCONF_PLATFORM_PRI_CAPS="PPC64_AIX5"
383 VGCONF_PLATFORM_SEC_CAPS="PPC32_AIX5"
sewardj03d86f22006-10-17 00:57:24 +0000384 fi
njnd74b0ef2009-01-20 06:06:52 +0000385 valt_load_address_normal="0x38000000"
386 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000387 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj03d86f22006-10-17 00:57:24 +0000388 ;;
sewardj01262142006-01-04 01:20:28 +0000389 ppc64-linux)
sewardj86e992f2006-01-28 18:39:09 +0000390 if test x$vg_cv_only64bit = xyes; then
njn7fd6d382009-01-22 21:56:32 +0000391 VGCONF_ARCH_PRI="ppc64"
392 VGCONF_PLATFORM_PRI_CAPS="PPC64_LINUX"
393 VGCONF_PLATFORM_SEC_CAPS=""
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="ppc32"
396 VGCONF_PLATFORM_PRI_CAPS="PPC32_LINUX"
397 VGCONF_PLATFORM_SEC_CAPS=""
398 VGCONF_ARCH_PRI="ppc32"
sewardj86e992f2006-01-28 18:39:09 +0000399 else
njn7fd6d382009-01-22 21:56:32 +0000400 VGCONF_ARCH_PRI="ppc64"
401 VGCONF_PLATFORM_PRI_CAPS="PPC64_LINUX"
402 VGCONF_PLATFORM_SEC_CAPS="PPC32_LINUX"
sewardj86e992f2006-01-28 18:39:09 +0000403 fi
njnd74b0ef2009-01-20 06:06:52 +0000404 valt_load_address_normal="0x38000000"
405 valt_load_address_inner="0x28000000"
njn377c43f2009-05-19 07:39:22 +0000406 AC_MSG_RESULT([ok (${ARCH_MAX}-${VGCONF_OS})])
sewardj01262142006-01-04 01:20:28 +0000407 ;;
nethercote888ecb72004-08-23 14:54:40 +0000408 *)
njn7fd6d382009-01-22 21:56:32 +0000409 VGCONF_ARCH_PRI="unknown"
410 VGCONF_PLATFORM_PRI_CAPS="UNKNOWN"
411 VGCONF_PLATFORM_SEC_CAPS="UNKNOWN"
njn377c43f2009-05-19 07:39:22 +0000412 AC_MSG_RESULT([no (${ARCH_MAX}-${VGCONF_OS})])
sewardj3e38ce02004-11-23 01:17:29 +0000413 AC_MSG_ERROR([Valgrind is platform specific. Sorry. Please consider doing a port.])
nethercote888ecb72004-08-23 14:54:40 +0000414 ;;
415esac
sewardjde4a1d02002-03-22 01:27:54 +0000416
njn7fd6d382009-01-22 21:56:32 +0000417#----------------------------------------------------------------------------
njna454ec02009-01-19 03:16:59 +0000418
njn7fd6d382009-01-22 21:56:32 +0000419# Set up VGCONF_ARCHS_INCLUDE_<arch>. Either one or two of these become
420# defined.
421AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_X86,
422 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
423 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX )
424AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_AMD64,
425 test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX )
426AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_PPC32,
427 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX \
428 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX \
429 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
430 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5 )
431AM_CONDITIONAL(VGCONF_ARCHS_INCLUDE_PPC64,
432 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX \
433 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 )
sewardj03d86f22006-10-17 00:57:24 +0000434
njn7fd6d382009-01-22 21:56:32 +0000435# Set up VGCONF_PLATFORMS_INCLUDE_<platform>. Either one or two of these
436# become defined.
437AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_X86_LINUX,
438 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
439 -o x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX)
440AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_AMD64_LINUX,
441 test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX)
442AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC32_LINUX,
443 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX \
444 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX)
445AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC64_LINUX,
446 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX)
447AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC32_AIX5,
448 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
449 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5)
450AM_CONDITIONAL(VGCONF_PLATFORMS_INCLUDE_PPC64_AIX5,
451 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5)
452
453# Similarly, set up VGCONF_OF_IS_<os>. Exactly one of these becomes defined.
sewardj03d86f22006-10-17 00:57:24 +0000454# Relies on the assumption that the primary and secondary targets are
455# for the same OS, so therefore only necessary to test the primary.
njn7fd6d382009-01-22 21:56:32 +0000456AM_CONDITIONAL(VGCONF_OS_IS_LINUX,
457 test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
458 -o x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \
459 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX \
460 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX)
461AM_CONDITIONAL(VGCONF_OS_IS_AIX5,
462 test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
463 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5)
sewardj03d86f22006-10-17 00:57:24 +0000464
465
njn7fd6d382009-01-22 21:56:32 +0000466# Sometimes, in the Makefile.am files, it's useful to know whether or not
467# there is a secondary target.
468AM_CONDITIONAL(VGCONF_HAVE_PLATFORM_SEC_CAPS,
469 test x$VGCONF_PLATFORM_SEC_CAPS != x)
tomfb7bcde2005-11-07 15:24:38 +0000470
tomb637bad2005-11-08 12:28:35 +0000471
njn7fd6d382009-01-22 21:56:32 +0000472#----------------------------------------------------------------------------
473# Inner Valgrind?
474#----------------------------------------------------------------------------
475
njnd74b0ef2009-01-20 06:06:52 +0000476# Check if this should be built as an inner Valgrind, to be run within
477# another Valgrind. Choose the load address accordingly.
478AC_SUBST(VALT_LOAD_ADDRESS)
479AC_CACHE_CHECK([for use as an inner Valgrind], vg_cv_inner,
480 [AC_ARG_ENABLE(inner,
481 [ --enable-inner enables self-hosting],
482 [vg_cv_inner=$enableval],
483 [vg_cv_inner=no])])
484if test "$vg_cv_inner" = yes; then
485 AC_DEFINE([ENABLE_INNER], 1, [configured to run as an inner Valgrind])
486 VALT_LOAD_ADDRESS=$valt_load_address_inner
487else
488 VALT_LOAD_ADDRESS=$valt_load_address_normal
489fi
490
491
njn7fd6d382009-01-22 21:56:32 +0000492#----------------------------------------------------------------------------
493# Libc and suppressions
494#----------------------------------------------------------------------------
495# This variable will collect the suppression files to be used.
496DEFAULT_SUPP=""
497AC_SUBST(DEFAULT_SUPP)
sewardj01262142006-01-04 01:20:28 +0000498
dirk07596a22008-04-25 11:33:30 +0000499GLIBC_VERSION=""
sewardjde4a1d02002-03-22 01:27:54 +0000500
sewardjde4a1d02002-03-22 01:27:54 +0000501AC_EGREP_CPP([GLIBC_22], [
502#include <features.h>
503#ifdef __GNU_LIBRARY__
504 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 2)
505 GLIBC_22
506 #endif
507#endif
508],
dirk07596a22008-04-25 11:33:30 +0000509GLIBC_VERSION="2.2")
sewardjde4a1d02002-03-22 01:27:54 +0000510
sewardj08c7f012002-10-07 23:56:55 +0000511AC_EGREP_CPP([GLIBC_23], [
512#include <features.h>
513#ifdef __GNU_LIBRARY__
514 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 3)
515 GLIBC_23
516 #endif
517#endif
518],
dirk07596a22008-04-25 11:33:30 +0000519GLIBC_VERSION="2.3")
sewardj08c7f012002-10-07 23:56:55 +0000520
njn781dba52005-06-30 04:06:38 +0000521AC_EGREP_CPP([GLIBC_24], [
522#include <features.h>
523#ifdef __GNU_LIBRARY__
524 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 4)
525 GLIBC_24
526 #endif
527#endif
528],
dirk07596a22008-04-25 11:33:30 +0000529GLIBC_VERSION="2.4")
njn781dba52005-06-30 04:06:38 +0000530
dirkaece45c2006-10-12 08:17:49 +0000531AC_EGREP_CPP([GLIBC_25], [
532#include <features.h>
533#ifdef __GNU_LIBRARY__
534 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 5)
535 GLIBC_25
536 #endif
537#endif
538],
dirk07596a22008-04-25 11:33:30 +0000539GLIBC_VERSION="2.5")
dirkaece45c2006-10-12 08:17:49 +0000540
dirkc8bd0c52007-05-23 17:39:08 +0000541AC_EGREP_CPP([GLIBC_26], [
542#include <features.h>
543#ifdef __GNU_LIBRARY__
544 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 6)
545 GLIBC_26
546 #endif
547#endif
548],
dirk07596a22008-04-25 11:33:30 +0000549GLIBC_VERSION="2.6")
dirkc8bd0c52007-05-23 17:39:08 +0000550
sewardj68c80c12007-11-18 14:40:02 +0000551AC_EGREP_CPP([GLIBC_27], [
552#include <features.h>
553#ifdef __GNU_LIBRARY__
554 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 7)
555 GLIBC_27
556 #endif
557#endif
558],
dirk07596a22008-04-25 11:33:30 +0000559GLIBC_VERSION="2.7")
560
561AC_EGREP_CPP([GLIBC_28], [
562#include <features.h>
563#ifdef __GNU_LIBRARY__
564 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 8)
565 GLIBC_28
566 #endif
567#endif
568],
569GLIBC_VERSION="2.8")
sewardj68c80c12007-11-18 14:40:02 +0000570
dirkd2e31eb2008-11-19 23:58:36 +0000571AC_EGREP_CPP([GLIBC_29], [
572#include <features.h>
573#ifdef __GNU_LIBRARY__
574 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 9)
575 GLIBC_29
576 #endif
577#endif
578],
579GLIBC_VERSION="2.9")
580
sewardj5d425e82009-02-01 19:01:11 +0000581AC_EGREP_CPP([GLIBC_210], [
582#include <features.h>
583#ifdef __GNU_LIBRARY__
584 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 10)
585 GLIBC_210
586 #endif
587#endif
588],
589GLIBC_VERSION="2.10")
590
sewardj03d86f22006-10-17 00:57:24 +0000591AC_EGREP_CPP([AIX5_LIBC], [
592#include <standards.h>
593#if defined(_AIXVERSION_510) || defined(_AIXVERSION_520) || defined(_AIXVERSION_530)
594 AIX5_LIBC
595#endif
596],
dirk07596a22008-04-25 11:33:30 +0000597GLIBC_VERSION="aix5")
daywalkere9212b32003-06-15 22:39:15 +0000598
dirk07596a22008-04-25 11:33:30 +0000599AC_MSG_CHECKING([the GLIBC_VERSION version])
sewardj03d86f22006-10-17 00:57:24 +0000600
dirk07596a22008-04-25 11:33:30 +0000601case "${GLIBC_VERSION}" in
sewardjde4a1d02002-03-22 01:27:54 +0000602 2.2)
603 AC_MSG_RESULT(2.2 family)
daywalker418c7482002-10-16 13:09:26 +0000604 AC_DEFINE([GLIBC_2_2], 1, [Define to 1 if you're using glibc 2.2.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000605 DEFAULT_SUPP="glibc-2.2.supp ${DEFAULT_SUPP}"
606 DEFAULT_SUPP="glibc-2.2-LinuxThreads-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000607 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardjde4a1d02002-03-22 01:27:54 +0000608 ;;
609
sewardj08c7f012002-10-07 23:56:55 +0000610 2.3)
611 AC_MSG_RESULT(2.3 family)
daywalker418c7482002-10-16 13:09:26 +0000612 AC_DEFINE([GLIBC_2_3], 1, [Define to 1 if you're using glibc 2.3.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000613 DEFAULT_SUPP="glibc-2.3.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000614 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000615 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardj08c7f012002-10-07 23:56:55 +0000616 ;;
617
njn781dba52005-06-30 04:06:38 +0000618 2.4)
619 AC_MSG_RESULT(2.4 family)
620 AC_DEFINE([GLIBC_2_4], 1, [Define to 1 if you're using glibc 2.4.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000621 DEFAULT_SUPP="glibc-2.4.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000622 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000623 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
njn781dba52005-06-30 04:06:38 +0000624 ;;
625
dirkaece45c2006-10-12 08:17:49 +0000626 2.5)
627 AC_MSG_RESULT(2.5 family)
628 AC_DEFINE([GLIBC_2_5], 1, [Define to 1 if you're using glibc 2.5.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000629 DEFAULT_SUPP="glibc-2.5.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000630 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000631 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
dirkaece45c2006-10-12 08:17:49 +0000632 ;;
dirkc8bd0c52007-05-23 17:39:08 +0000633 2.6)
634 AC_MSG_RESULT(2.6 family)
635 AC_DEFINE([GLIBC_2_6], 1, [Define to 1 if you're using glibc 2.6.x])
sewardj2c4f3dd2007-11-11 06:13:01 +0000636 DEFAULT_SUPP="glibc-2.6.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000637 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000638 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000639 ;;
640 2.7)
641 AC_MSG_RESULT(2.7 family)
642 AC_DEFINE([GLIBC_2_7], 1, [Define to 1 if you're using glibc 2.7.x])
dirk07596a22008-04-25 11:33:30 +0000643 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
sewardj68c80c12007-11-18 14:40:02 +0000644 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
tom0a0fcee2008-01-05 00:12:45 +0000645 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
dirkc8bd0c52007-05-23 17:39:08 +0000646 ;;
dirk07596a22008-04-25 11:33:30 +0000647 2.8)
648 AC_MSG_RESULT(2.8 family)
dirkeb939fc2008-04-27 20:38:47 +0000649 AC_DEFINE([GLIBC_2_8], 1, [Define to 1 if you're using glibc 2.8.x])
dirk07596a22008-04-25 11:33:30 +0000650 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
651 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
652 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
653 ;;
dirkd2e31eb2008-11-19 23:58:36 +0000654 2.9)
655 AC_MSG_RESULT(2.9 family)
656 AC_DEFINE([GLIBC_2_9], 1, [Define to 1 if you're using glibc 2.9.x])
657 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
658 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
659 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
660 ;;
sewardj5d425e82009-02-01 19:01:11 +0000661 2.10)
662 AC_MSG_RESULT(2.10 family)
663 AC_DEFINE([GLIBC_2_10], 1, [Define to 1 if you're using glibc 2.10.x])
664 DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
665 DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
666 DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
667 ;;
sewardj03d86f22006-10-17 00:57:24 +0000668 aix5)
sewardj2f3bcd22006-12-12 01:38:15 +0000669 AC_MSG_RESULT(AIX 5.1 or 5.2 or 5.3)
670 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 +0000671 DEFAULT_SUPP="aix5libc.supp ${DEFAULT_SUPP}"
672 ;;
dirkaece45c2006-10-12 08:17:49 +0000673
sewardjde4a1d02002-03-22 01:27:54 +0000674 *)
675 AC_MSG_RESULT(unsupported version)
sewardj5d425e82009-02-01 19:01:11 +0000676 AC_MSG_ERROR([Valgrind requires glibc version 2.2 - 2.10])
dirk07596a22008-04-25 11:33:30 +0000677 AC_MSG_ERROR([or AIX 5.1 or 5.2 or 5.3 GLIBC_VERSION])
sewardjde4a1d02002-03-22 01:27:54 +0000678 ;;
679esac
680
dirk07596a22008-04-25 11:33:30 +0000681AC_SUBST(GLIBC_VERSION)
sewardj535c50f2005-06-04 23:14:53 +0000682
sewardj414f3582008-07-18 20:46:00 +0000683
684# Add default suppressions for the X client libraries. Make no
685# attempt to detect whether such libraries are installed on the
686# build machine (or even if any X facilities are present); just
687# add the suppressions antidisirregardless.
688DEFAULT_SUPP="xfree-4.supp ${DEFAULT_SUPP}"
689DEFAULT_SUPP="xfree-3.supp ${DEFAULT_SUPP}"
gobrye721a522002-03-22 13:38:30 +0000690
sewardj5744c022008-10-19 18:58:13 +0000691# Add glibc and X11 suppressions for exp-ptrcheck
692DEFAULT_SUPP="exp-ptrcheck.supp ${DEFAULT_SUPP}"
693
sewardj2e10a682003-04-07 19:36:41 +0000694
njn7fd6d382009-01-22 21:56:32 +0000695#----------------------------------------------------------------------------
696# Checking for various library functions and other definitions
697#----------------------------------------------------------------------------
698
bart59e2f182008-04-28 16:22:53 +0000699# Check for CLOCK_MONOTONIC
700
701AC_MSG_CHECKING([for CLOCK_MONOTONIC])
702
703AC_TRY_COMPILE(
704[
705#include <time.h>
706], [
707 struct timespec t;
708 clock_gettime(CLOCK_MONOTONIC, &t);
709 return 0;
710],
711[
712AC_MSG_RESULT([yes])
713AC_DEFINE([HAVE_CLOCK_MONOTONIC], 1,
714 [Define to 1 if you have the `CLOCK_MONOTONIC' constant.])
715], [
716AC_MSG_RESULT([no])
717])
718
bartfea06922008-05-03 09:12:15 +0000719
720# Check for PTHREAD_MUTEX_ADAPTIVE_NP
721
722AC_MSG_CHECKING([for PTHREAD_MUTEX_ADAPTIVE_NP])
723
724AC_TRY_COMPILE(
725[
726#define _GNU_SOURCE
727#include <pthread.h>
728], [
729 return (PTHREAD_MUTEX_ADAPTIVE_NP);
730],
731[
732AC_MSG_RESULT([yes])
733AC_DEFINE([HAVE_PTHREAD_MUTEX_ADAPTIVE_NP], 1,
734 [Define to 1 if you have the `PTHREAD_MUTEX_ADAPTIVE_NP' constant.])
735], [
736AC_MSG_RESULT([no])
737])
738
739
740# Check for PTHREAD_MUTEX_ERRORCHECK_NP
741
742AC_MSG_CHECKING([for PTHREAD_MUTEX_ERRORCHECK_NP])
743
744AC_TRY_COMPILE(
745[
746#define _GNU_SOURCE
747#include <pthread.h>
748], [
749 return (PTHREAD_MUTEX_ERRORCHECK_NP);
750],
751[
752AC_MSG_RESULT([yes])
753AC_DEFINE([HAVE_PTHREAD_MUTEX_ERRORCHECK_NP], 1,
754 [Define to 1 if you have the `PTHREAD_MUTEX_ERRORCHECK_NP' constant.])
755], [
756AC_MSG_RESULT([no])
757])
758
759
760# Check for PTHREAD_MUTEX_RECURSIVE_NP
761
762AC_MSG_CHECKING([for PTHREAD_MUTEX_RECURSIVE_NP])
763
764AC_TRY_COMPILE(
765[
766#define _GNU_SOURCE
767#include <pthread.h>
768], [
769 return (PTHREAD_MUTEX_RECURSIVE_NP);
770],
771[
772AC_MSG_RESULT([yes])
773AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE_NP], 1,
774 [Define to 1 if you have the `PTHREAD_MUTEX_RECURSIVE_NP' constant.])
775], [
776AC_MSG_RESULT([no])
777])
778
779
780# Check for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
781
782AC_MSG_CHECKING([for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP])
783
784AC_TRY_COMPILE(
785[
786#define _GNU_SOURCE
787#include <pthread.h>
788], [
789 pthread_mutex_t m = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
790 return 0;
791],
792[
793AC_MSG_RESULT([yes])
794AC_DEFINE([HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], 1,
795 [Define to 1 if you have the `PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP' constant.])
796], [
797AC_MSG_RESULT([no])
798])
799
800
bart5e389f12008-04-05 12:53:15 +0000801# Check whether pthread_mutex_t has a member called __m_kind.
802
803AC_MSG_CHECKING([for pthread_mutex_t::__m_kind])
804
bart56730cd2008-05-11 06:41:46 +0000805AC_TRY_COMPILE(
bart5e389f12008-04-05 12:53:15 +0000806[
bart56730cd2008-05-11 06:41:46 +0000807 #include <pthread.h>
808], [
bart5e389f12008-04-05 12:53:15 +0000809 pthread_mutex_t m;
810 return m.__m_kind;
bart56730cd2008-05-11 06:41:46 +0000811], [
bart5e389f12008-04-05 12:53:15 +0000812AC_MSG_RESULT([yes])
813AC_DEFINE([HAVE_PTHREAD_MUTEX_T__M_KIND], 1,
814 [Define to 1 if pthread_mutex_t has a member called __m_kind.])
815], [
816AC_MSG_RESULT([no])
817])
818
819
820# Check whether pthread_mutex_t has a member called __data.__kind.
821
822AC_MSG_CHECKING([for pthread_mutex_t::__data.__kind])
823
bart56730cd2008-05-11 06:41:46 +0000824AC_TRY_COMPILE(
bart5e389f12008-04-05 12:53:15 +0000825[
bart56730cd2008-05-11 06:41:46 +0000826#include <pthread.h>
827], [
bart5e389f12008-04-05 12:53:15 +0000828 pthread_mutex_t m;
829 return m.__data.__kind;
bart56730cd2008-05-11 06:41:46 +0000830], [
bart5e389f12008-04-05 12:53:15 +0000831AC_MSG_RESULT([yes])
832AC_DEFINE([HAVE_PTHREAD_MUTEX_T__DATA__KIND], 1,
833 [Define to 1 if pthread_mutex_t has a member __data.__kind.])
834], [
835AC_MSG_RESULT([no])
836])
837
838
bart62c370e2008-05-12 18:50:51 +0000839# does this compiler support -maltivec and does it have the include file
840# <altivec.h> ?
841
842AC_MSG_CHECKING([for Altivec])
843
844safe_CFLAGS=$CFLAGS
845CFLAGS="-maltivec"
846
847AC_TRY_COMPILE(
848[
849#include <altivec.h>
850], [
851 vector unsigned int v;
852],
853[
854ac_have_altivec=yes
855AC_MSG_RESULT([yes])
856], [
857ac_have_altivec=no
858AC_MSG_RESULT([no])
859])
860CFLAGS=$safe_CFLAGS
861
862AM_CONDITIONAL([HAS_ALTIVEC], [test x$ac_have_altivec = xyes])
863AM_CONDITIONAL([HAVE_ALTIVEC_H], [test x$ac_have_altivec = xyes])
864
865
bart36dd85a2009-04-26 07:11:48 +0000866# Check for pthread_create@GLIBC2.0
867AC_MSG_CHECKING([for pthread_create@GLIBC2.0()])
868
bart16e1c5a2009-04-26 07:38:53 +0000869safe_CFLAGS=$CFLAGS
870CFLAGS="-lpthread"
bart36dd85a2009-04-26 07:11:48 +0000871AC_TRY_LINK(
872[
873extern int pthread_create_glibc_2_0(void*, const void*,
874 void *(*)(void*), void*);
875__asm__(".symver pthread_create_glibc_2_0, pthread_create@GLIBC_2.0");
876], [
bart276ed3a2009-05-10 15:41:45 +0000877#ifdef __powerpc__
878/*
879 * Apparently on PowerPC linking this program succeeds and generates an
880 * executable with the undefined symbol pthread_create@GLIBC_2.0.
881 */
882#error This test does not work properly on PowerPC.
883#else
bart16e1c5a2009-04-26 07:38:53 +0000884 pthread_create_glibc_2_0(0, 0, 0, 0);
bart276ed3a2009-05-10 15:41:45 +0000885#endif
bart16e1c5a2009-04-26 07:38:53 +0000886 return 0;
bart36dd85a2009-04-26 07:11:48 +0000887],
888[
889ac_have_pthread_create_glibc_2_0=yes
890AC_MSG_RESULT([yes])
891AC_DEFINE([HAVE_PTHREAD_CREATE_GLIBC_2_0], 1,
892 [Define to 1 if you have the `pthread_create@glibc2.0' function.])
893], [
894ac_have_pthread_create_glibc_2_0=no
895AC_MSG_RESULT([no])
896])
bart16e1c5a2009-04-26 07:38:53 +0000897CFLAGS=$safe_CFLAGS
bart36dd85a2009-04-26 07:11:48 +0000898
899AM_CONDITIONAL(HAVE_PTHREAD_CREATE_GLIBC_2_0,
bart24f53902009-04-26 11:29:02 +0000900 test x$ac_have_pthread_create_glibc_2_0 = xyes)
bart36dd85a2009-04-26 07:11:48 +0000901
902
barta50aa8a2008-04-27 06:06:57 +0000903# Check for eventfd_t, eventfd() and eventfd_read()
904AC_MSG_CHECKING([for eventfd()])
905
906AC_TRY_LINK(
907[
908#include <sys/eventfd.h>
909], [
910 eventfd_t ev;
911 int fd;
912
913 fd = eventfd(5, 0);
914 eventfd_read(fd, &ev);
915 return 0;
916],
917[
918AC_MSG_RESULT([yes])
919AC_DEFINE([HAVE_EVENTFD], 1,
920 [Define to 1 if you have the `eventfd' function.])
921AC_DEFINE([HAVE_EVENTFD_READ], 1,
922 [Define to 1 if you have the `eventfd_read' function.])
923], [
924AC_MSG_RESULT([no])
925])
926
927
njn7fd6d382009-01-22 21:56:32 +0000928#----------------------------------------------------------------------------
929# Checking for supported compiler flags.
930#----------------------------------------------------------------------------
931
sewardj535c50f2005-06-04 23:14:53 +0000932# does this compiler support -m32 ?
933AC_MSG_CHECKING([if gcc accepts -m32])
934
935safe_CFLAGS=$CFLAGS
936CFLAGS="-m32"
937
938AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +0000939 return 0;
sewardj535c50f2005-06-04 23:14:53 +0000940],
941[
942FLAG_M32="-m32"
943AC_MSG_RESULT([yes])
944], [
945FLAG_M32=""
946AC_MSG_RESULT([no])
947])
948CFLAGS=$safe_CFLAGS
949
950AC_SUBST(FLAG_M32)
951
952
sewardj03d86f22006-10-17 00:57:24 +0000953# does this compiler support -maix32 ?
954AC_MSG_CHECKING([if gcc accepts -maix32])
955
956safe_CFLAGS=$CFLAGS
957CFLAGS="-maix32"
958
959AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +0000960 return 0;
sewardj03d86f22006-10-17 00:57:24 +0000961],
962[
963FLAG_MAIX32="-maix32"
964AC_MSG_RESULT([yes])
965], [
966FLAG_MAIX32=""
967AC_MSG_RESULT([no])
968])
969CFLAGS=$safe_CFLAGS
970
971AC_SUBST(FLAG_MAIX32)
972
973
sewardj01262142006-01-04 01:20:28 +0000974# does this compiler support -m64 ?
975AC_MSG_CHECKING([if gcc accepts -m64])
976
977safe_CFLAGS=$CFLAGS
978CFLAGS="-m64"
979
980AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +0000981 return 0;
sewardj01262142006-01-04 01:20:28 +0000982],
983[
984FLAG_M64="-m64"
985AC_MSG_RESULT([yes])
986], [
987FLAG_M64=""
988AC_MSG_RESULT([no])
989])
990CFLAGS=$safe_CFLAGS
991
992AC_SUBST(FLAG_M64)
993
994
sewardj03d86f22006-10-17 00:57:24 +0000995# does this compiler support -maix64 ?
996AC_MSG_CHECKING([if gcc accepts -maix64])
997
998safe_CFLAGS=$CFLAGS
999CFLAGS="-maix64"
1000
1001AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001002 return 0;
sewardj03d86f22006-10-17 00:57:24 +00001003],
1004[
1005FLAG_MAIX64="-maix64"
1006AC_MSG_RESULT([yes])
1007], [
1008FLAG_MAIX64=""
1009AC_MSG_RESULT([no])
1010])
1011CFLAGS=$safe_CFLAGS
1012
1013AC_SUBST(FLAG_MAIX64)
1014
1015
sewardj67f1fcc2005-07-03 10:41:02 +00001016# does this compiler support -mmmx ?
1017AC_MSG_CHECKING([if gcc accepts -mmmx])
1018
1019safe_CFLAGS=$CFLAGS
1020CFLAGS="-mmmx"
1021
1022AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001023 return 0;
sewardj67f1fcc2005-07-03 10:41:02 +00001024],
1025[
1026FLAG_MMMX="-mmmx"
1027AC_MSG_RESULT([yes])
1028], [
1029FLAG_MMMX=""
1030AC_MSG_RESULT([no])
1031])
1032CFLAGS=$safe_CFLAGS
1033
1034AC_SUBST(FLAG_MMMX)
1035
1036
1037# does this compiler support -msse ?
1038AC_MSG_CHECKING([if gcc accepts -msse])
1039
1040safe_CFLAGS=$CFLAGS
1041CFLAGS="-msse"
1042
1043AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001044 return 0;
sewardj67f1fcc2005-07-03 10:41:02 +00001045],
1046[
1047FLAG_MSSE="-msse"
1048AC_MSG_RESULT([yes])
1049], [
1050FLAG_MSSE=""
1051AC_MSG_RESULT([no])
1052])
1053CFLAGS=$safe_CFLAGS
1054
1055AC_SUBST(FLAG_MSSE)
1056
1057
sewardj5b754b42002-06-03 22:53:35 +00001058# does this compiler support -mpreferred-stack-boundary=2 ?
1059AC_MSG_CHECKING([if gcc accepts -mpreferred-stack-boundary])
1060
daywalker3664f562003-10-17 13:43:46 +00001061safe_CFLAGS=$CFLAGS
sewardj5b754b42002-06-03 22:53:35 +00001062CFLAGS="-mpreferred-stack-boundary=2"
1063
1064AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001065 return 0;
sewardj5b754b42002-06-03 22:53:35 +00001066],
1067[
1068PREFERRED_STACK_BOUNDARY="-mpreferred-stack-boundary=2"
daywalker3664f562003-10-17 13:43:46 +00001069AC_MSG_RESULT([yes])
sewardj5b754b42002-06-03 22:53:35 +00001070], [
1071PREFERRED_STACK_BOUNDARY=""
1072AC_MSG_RESULT([no])
1073])
daywalker3664f562003-10-17 13:43:46 +00001074CFLAGS=$safe_CFLAGS
sewardj5b754b42002-06-03 22:53:35 +00001075
1076AC_SUBST(PREFERRED_STACK_BOUNDARY)
1077
sewardj535c50f2005-06-04 23:14:53 +00001078
sewardjb5f6f512005-03-10 23:59:00 +00001079# does this compiler support -Wno-pointer-sign ?
bart56730cd2008-05-11 06:41:46 +00001080AC_MSG_CHECKING([if gcc accepts -Wno-pointer-sign])
sewardjb5f6f512005-03-10 23:59:00 +00001081
1082safe_CFLAGS=$CFLAGS
1083CFLAGS="-Wno-pointer-sign"
1084
1085AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001086 return 0;
sewardjb5f6f512005-03-10 23:59:00 +00001087],
1088[
1089no_pointer_sign=yes
1090AC_MSG_RESULT([yes])
1091], [
1092no_pointer_sign=no
1093AC_MSG_RESULT([no])
1094])
1095CFLAGS=$safe_CFLAGS
1096
1097if test x$no_pointer_sign = xyes; then
1098 CFLAGS="$CFLAGS -Wno-pointer-sign"
1099fi
1100
sewardj535c50f2005-06-04 23:14:53 +00001101
tom1e946682005-10-12 11:27:33 +00001102# does this compiler support -Wdeclaration-after-statement ?
bart56730cd2008-05-11 06:41:46 +00001103AC_MSG_CHECKING([if gcc accepts -Wdeclaration-after-statement])
tom1e946682005-10-12 11:27:33 +00001104
1105safe_CFLAGS=$CFLAGS
1106CFLAGS="-Wdeclaration-after-statement"
1107
1108AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001109 return 0;
tom1e946682005-10-12 11:27:33 +00001110],
1111[
tome9814c32005-10-12 11:30:43 +00001112declaration_after_statement=yes
sewardj72a547e2006-01-25 02:58:28 +00001113FLAG_WDECL_AFTER_STMT="-Wdeclaration-after-statement"
tom1e946682005-10-12 11:27:33 +00001114AC_MSG_RESULT([yes])
1115], [
tome9814c32005-10-12 11:30:43 +00001116declaration_after_statement=no
sewardj72a547e2006-01-25 02:58:28 +00001117FLAG_WDECL_AFTER_STMT=""
tom1e946682005-10-12 11:27:33 +00001118AC_MSG_RESULT([no])
1119])
1120CFLAGS=$safe_CFLAGS
1121
sewardj72a547e2006-01-25 02:58:28 +00001122AC_SUBST(FLAG_WDECL_AFTER_STMT)
1123
tome9814c32005-10-12 11:30:43 +00001124if test x$declaration_after_statement = xyes; then
tom1e946682005-10-12 11:27:33 +00001125 CFLAGS="$CFLAGS -Wdeclaration-after-statement"
1126fi
1127
sewardj00f1e622006-03-12 16:47:10 +00001128
bart9d865fa2008-06-23 12:11:49 +00001129# does this compiler support -Wno-format-zero-length ?
1130
1131AC_MSG_CHECKING([if gcc accepts -Wno-format-zero-length])
1132
1133safe_CFLAGS=$CFLAGS
1134CFLAGS="-Wno-format-zero-length"
1135
1136AC_TRY_COMPILE(
1137[ ],
1138[
1139 return 0;
1140],
1141[
1142AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [-Wno-format-zero-length])
1143AC_MSG_RESULT([yes])
1144],
1145[
1146AC_SUBST([FLAG_W_NO_FORMAT_ZERO_LENGTH], [])
1147AC_MSG_RESULT([no])
1148])
1149CFLAGS=$safe_CFLAGS
1150
1151
bart56730cd2008-05-11 06:41:46 +00001152# does this compiler support -Wextra or the older -W ?
1153
1154AC_MSG_CHECKING([if gcc accepts -Wextra or -W])
1155
1156safe_CFLAGS=$CFLAGS
1157CFLAGS="-Wextra"
1158
1159AC_TRY_COMPILE(
1160[ ],
1161[
1162 return 0;
1163],
1164[
1165AC_SUBST([FLAG_W_EXTRA], [-Wextra])
1166AC_MSG_RESULT([-Wextra])
1167], [
1168 CFLAGS="-W"
1169 AC_TRY_COMPILE(
1170 [ ],
1171 [
1172 return 0;
1173 ],
1174 [
1175 AC_SUBST([FLAG_W_EXTRA], [-W])
1176 AC_MSG_RESULT([-W])
1177 ], [
1178 AC_SUBST([FLAG_W_EXTRA], [])
1179 AC_MSG_RESULT([not supported])
1180 ])
1181])
1182CFLAGS=$safe_CFLAGS
1183
1184
sewardja72c26d2007-05-01 13:44:08 +00001185# does this compiler support -fno-stack-protector ?
bart56730cd2008-05-11 06:41:46 +00001186AC_MSG_CHECKING([if gcc accepts -fno-stack-protector])
sewardja72c26d2007-05-01 13:44:08 +00001187
1188safe_CFLAGS=$CFLAGS
1189CFLAGS="-fno-stack-protector"
1190
1191AC_TRY_COMPILE(, [
njn9890ee12009-01-21 22:25:50 +00001192 return 0;
sewardja72c26d2007-05-01 13:44:08 +00001193],
1194[
1195no_stack_protector=yes
1196FLAG_FNO_STACK_PROTECTOR="-fno-stack-protector"
1197AC_MSG_RESULT([yes])
1198], [
1199no_stack_protector=no
1200FLAG_FNO_STACK_PROTECTOR=""
1201AC_MSG_RESULT([no])
1202])
1203CFLAGS=$safe_CFLAGS
1204
1205AC_SUBST(FLAG_FNO_STACK_PROTECTOR)
1206
1207if test x$no_stack_protector = xyes; then
1208 CFLAGS="$CFLAGS -fno-stack-protector"
1209fi
1210
1211
bart56730cd2008-05-11 06:41:46 +00001212# does this compiler support --param inline-unit-growth=... ?
1213
1214AC_MSG_CHECKING([if gcc accepts --param inline-unit-growth])
1215
1216safe_CFLAGS=$CFLAGS
1217CFLAGS="--param inline-unit-growth=900"
1218
1219AC_TRY_COMPILE(
1220[ ],
1221[
1222 return 0;
1223],
1224[
1225AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH],
1226 ["--param inline-unit-growth=900"])
1227AC_MSG_RESULT([yes])
1228], [
1229AC_SUBST([FLAG_UNLIMITED_INLINE_UNIT_GROWTH], [""])
1230AC_MSG_RESULT([no])
1231])
1232CFLAGS=$safe_CFLAGS
1233
1234
tomd55121e2005-12-19 12:40:13 +00001235# does this compiler support __builtin_expect?
1236AC_MSG_CHECKING([if gcc supports __builtin_expect])
bart56730cd2008-05-11 06:41:46 +00001237
tomd55121e2005-12-19 12:40:13 +00001238AC_TRY_LINK(, [
1239return __builtin_expect(1, 1) ? 1 : 0
1240],
1241[
1242ac_have_builtin_expect=yes
1243AC_MSG_RESULT([yes])
1244], [
1245ac_have_builtin_expect=no
1246AC_MSG_RESULT([no])
1247])
1248if test x$ac_have_builtin_expect = xyes ; then
1249 AC_DEFINE(HAVE_BUILTIN_EXPECT, 1, [Define to 1 if gcc supports __builtin_expect.])
1250fi
1251
tom1e946682005-10-12 11:27:33 +00001252
sewardj00f1e622006-03-12 16:47:10 +00001253# does the ppc assembler support "mtocrf" et al?
1254AC_MSG_CHECKING([if ppc32/64 as supports mtocrf/mfocrf])
1255
1256AC_TRY_COMPILE(, [
sewardjdd4cbe12006-03-12 17:27:44 +00001257__asm__ __volatile__("mtocrf 4,0");
1258__asm__ __volatile__("mfocrf 0,4");
sewardj00f1e622006-03-12 16:47:10 +00001259],
1260[
1261ac_have_as_ppc_mftocrf=yes
1262AC_MSG_RESULT([yes])
1263], [
1264ac_have_as_ppc_mftocrf=no
1265AC_MSG_RESULT([no])
1266])
1267if test x$ac_have_as_ppc_mftocrf = xyes ; then
1268 AC_DEFINE(HAVE_AS_PPC_MFTOCRF, 1, [Define to 1 if as supports mtocrf/mfocrf.])
1269fi
1270
1271
sewardjf0aabf82007-03-22 00:24:21 +00001272# does the x86/amd64 assembler understand SSE3 instructions?
sewardjfa18a262007-03-22 12:13:13 +00001273# Note, this doesn't generate a C-level symbol. It generates a
1274# automake-level symbol (BUILD_SSE3_TESTS), used in test Makefile.am's
sewardjf0aabf82007-03-22 00:24:21 +00001275AC_MSG_CHECKING([if x86/amd64 assembler speaks SSE3])
1276
1277AC_TRY_COMPILE(, [
1278 do { long long int x;
1279 __asm__ __volatile__("fisttpq (%0)" : :"r"(&x) ); }
1280 while (0)
1281],
1282[
1283ac_have_as_sse3=yes
1284AC_MSG_RESULT([yes])
1285], [
1286ac_have_as_sse3=no
1287AC_MSG_RESULT([no])
1288])
sewardjfa18a262007-03-22 12:13:13 +00001289
1290AM_CONDITIONAL(BUILD_SSE3_TESTS, test x$ac_have_as_sse3 = xyes)
sewardjf0aabf82007-03-22 00:24:21 +00001291
1292
sewardj6d6da5b2008-02-09 12:07:40 +00001293# Ditto for SSSE3 instructions (note extra S)
1294# Note, this doesn't generate a C-level symbol. It generates a
1295# automake-level symbol (BUILD_SSSE3_TESTS), used in test Makefile.am's
1296AC_MSG_CHECKING([if x86/amd64 assembler speaks SSSE3])
1297
1298AC_TRY_COMPILE(, [
1299 do { long long int x;
1300 __asm__ __volatile__(
1301 "pabsb (%0),%%xmm7" : : "r"(&x) : "xmm7" ); }
1302 while (0)
1303],
1304[
1305ac_have_as_ssse3=yes
1306AC_MSG_RESULT([yes])
1307], [
1308ac_have_as_ssse3=no
1309AC_MSG_RESULT([no])
1310])
1311
1312AM_CONDITIONAL(BUILD_SSSE3_TESTS, test x$ac_have_as_ssse3 = xyes)
1313
1314
sewardjb5f6f512005-03-10 23:59:00 +00001315# Check for TLS support in the compiler and linker
bartca9f2ad2008-06-02 07:14:20 +00001316if test "x${cross_compiling}" = "xno"; then
1317# Native compilation: check whether running a program using TLS succeeds.
1318# Linking only is not sufficient -- e.g. on Red Hat 7.3 linking TLS programs
1319# succeeds but running programs using TLS fails.
1320AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1321 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1322 [vg_cv_tls=$enableval],
1323 [AC_RUN_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
1324 [[return foo;]])],
1325 [vg_cv_tls=yes],
1326 [vg_cv_tls=no])])])
1327else
1328# Cross-compiling: check whether linking a program using TLS succeeds.
sewardjb5f6f512005-03-10 23:59:00 +00001329AC_CACHE_CHECK([for TLS support], vg_cv_tls,
1330 [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS],
1331 [vg_cv_tls=$enableval],
bartcddeaf52008-05-25 15:58:11 +00001332 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]],
sewardjb5f6f512005-03-10 23:59:00 +00001333 [[return foo;]])],
1334 [vg_cv_tls=yes],
1335 [vg_cv_tls=no])])])
bartca9f2ad2008-06-02 07:14:20 +00001336fi
sewardjb5f6f512005-03-10 23:59:00 +00001337
1338if test "$vg_cv_tls" = yes; then
1339AC_DEFINE([HAVE_TLS], 1, [can use __thread to define thread-local variables])
1340fi
sewardj5b754b42002-06-03 22:53:35 +00001341
sewardj535c50f2005-06-04 23:14:53 +00001342
njn7fd6d382009-01-22 21:56:32 +00001343#----------------------------------------------------------------------------
bart62f54e42008-07-28 11:35:10 +00001344# Checks for C header files.
njn7fd6d382009-01-22 21:56:32 +00001345#----------------------------------------------------------------------------
1346
sewardjde4a1d02002-03-22 01:27:54 +00001347AC_HEADER_STDC
bartf5ceec82008-04-26 07:45:10 +00001348AC_CHECK_HEADERS([ \
bart1f2b1432009-01-16 12:06:54 +00001349 asm/unistd.h \
bartf5ceec82008-04-26 07:45:10 +00001350 endian.h \
1351 mqueue.h \
1352 sys/endian.h \
1353 sys/epoll.h \
1354 sys/eventfd.h \
bartce48fa92008-04-26 10:59:46 +00001355 sys/klog.h \
bartf5ceec82008-04-26 07:45:10 +00001356 sys/poll.h \
bart71bad292008-04-27 11:43:23 +00001357 sys/signal.h \
bartf5ceec82008-04-26 07:45:10 +00001358 sys/signalfd.h \
bart71bad292008-04-27 11:43:23 +00001359 sys/syscall.h \
1360 sys/time.h \
1361 sys/types.h \
bartf5ceec82008-04-26 07:45:10 +00001362 ])
sewardjde4a1d02002-03-22 01:27:54 +00001363
njn7fd6d382009-01-22 21:56:32 +00001364#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001365# Checks for typedefs, structures, and compiler characteristics.
njn7fd6d382009-01-22 21:56:32 +00001366#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001367AC_TYPE_UID_T
1368AC_TYPE_OFF_T
1369AC_TYPE_SIZE_T
1370AC_HEADER_TIME
1371
sewardj535c50f2005-06-04 23:14:53 +00001372
njn7fd6d382009-01-22 21:56:32 +00001373#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001374# Checks for library functions.
njn7fd6d382009-01-22 21:56:32 +00001375#----------------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001376AC_FUNC_MEMCMP
1377AC_FUNC_MMAP
1378AC_TYPE_SIGNAL
1379
bart71bad292008-04-27 11:43:23 +00001380AC_CHECK_LIB([rt], [clock_gettime])
bart41ac62a2008-07-07 16:58:03 +00001381
bartf5ceec82008-04-26 07:45:10 +00001382AC_CHECK_FUNCS([ \
bart71bad292008-04-27 11:43:23 +00001383 clock_gettime\
bartf5ceec82008-04-26 07:45:10 +00001384 epoll_create \
1385 epoll_pwait \
bartf5ceec82008-04-26 07:45:10 +00001386 floor \
bartce48fa92008-04-26 10:59:46 +00001387 klogctl \
bartf5ceec82008-04-26 07:45:10 +00001388 mallinfo \
1389 memchr \
1390 memset \
1391 mkdir \
1392 ppoll \
bart6d45e922009-01-20 13:45:38 +00001393 pthread_barrier_init \
1394 pthread_condattr_setclock \
1395 pthread_mutex_timedlock \
1396 pthread_rwlock_timedrdlock \
1397 pthread_rwlock_timedwrlock \
1398 pthread_spin_lock \
bartf5ceec82008-04-26 07:45:10 +00001399 semtimedop \
1400 signalfd \
njn6cc22472009-03-16 03:46:48 +00001401 sigwaitinfo \
bart71bad292008-04-27 11:43:23 +00001402 syscall \
bartf5ceec82008-04-26 07:45:10 +00001403 strchr \
1404 strdup \
1405 strpbrk \
1406 strrchr \
1407 strstr \
1408 timerfd \
1409 utimensat \
1410 ])
sewardjde4a1d02002-03-22 01:27:54 +00001411
bart623eec32008-07-29 17:54:49 +00001412# AC_CHECK_LIB adds any library found to the variable LIBS, and links these
1413# libraries with any shared object and/or executable. This is NOT what we
1414# want for e.g. vgpreload_core-x86-linux.so
1415LIBS=""
sewardj80637752006-03-02 13:48:21 +00001416
bart6d45e922009-01-20 13:45:38 +00001417AM_CONDITIONAL([HAVE_PTHREAD_BARRIER],
1418 [test x$ac_cv_func_pthread_barrier_init = xyes])
bart2eaa8f22009-01-20 14:01:16 +00001419AM_CONDITIONAL([HAVE_PTHREAD_MUTEX_TIMEDLOCK],
1420 [test x$ac_cv_func_pthread_mutex_timedlock = xyes])
bart6d45e922009-01-20 13:45:38 +00001421AM_CONDITIONAL([HAVE_PTHREAD_SPINLOCK],
1422 [test x$ac_cv_func_pthread_spin_lock = xyes])
1423
njn7fd6d382009-01-22 21:56:32 +00001424
1425#----------------------------------------------------------------------------
1426# MPI checks
1427#----------------------------------------------------------------------------
sewardj03d86f22006-10-17 00:57:24 +00001428# Do we have a useable MPI setup on the primary and/or secondary targets?
1429# On Linux, by default, assumes mpicc and -m32/-m64
1430# On AIX, by default, assumes mpxlc and -q32/-q64
sewardje9fa5062006-03-12 18:29:18 +00001431# Note: this is a kludge in that it assumes the specified mpicc
sewardj03d86f22006-10-17 00:57:24 +00001432# understands -m32/-m64/-q32/-q64 regardless of what is specified using
1433# --with-mpicc=.
sewardj0ad46092006-03-02 17:09:16 +00001434MPI_CC="mpicc"
njn7fd6d382009-01-22 21:56:32 +00001435if test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 \
1436 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001437 MPI_CC="mpxlc"
1438fi
1439
sewardje9fa5062006-03-12 18:29:18 +00001440mflag_primary=
njn7fd6d382009-01-22 21:56:32 +00001441if test x$VGCONF_PLATFORM_PRI_CAPS = xX86_LINUX \
1442 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_LINUX ; then
sewardje9fa5062006-03-12 18:29:18 +00001443 mflag_primary=$FLAG_M32
njn7fd6d382009-01-22 21:56:32 +00001444elif test x$VGCONF_PLATFORM_PRI_CAPS = xAMD64_LINUX \
1445 -o x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_LINUX ; then
sewardje9fa5062006-03-12 18:29:18 +00001446 mflag_primary=$FLAG_M64
njn7fd6d382009-01-22 21:56:32 +00001447elif test x$VGCONF_PLATFORM_PRI_CAPS = xPPC32_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001448 mflag_primary=-q32
njn7fd6d382009-01-22 21:56:32 +00001449elif test x$VGCONF_PLATFORM_PRI_CAPS = xPPC64_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001450 mflag_primary=-q64
sewardje9fa5062006-03-12 18:29:18 +00001451fi
1452
sewardj03d86f22006-10-17 00:57:24 +00001453mflag_secondary=
njn7fd6d382009-01-22 21:56:32 +00001454if test x$VGCONF_PLATFORM_SEC_CAPS = xX86_LINUX \
1455 -o x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_LINUX ; then
sewardj03d86f22006-10-17 00:57:24 +00001456 mflag_secondary=$FLAG_M32
njn7fd6d382009-01-22 21:56:32 +00001457elif test x$VGCONF_PLATFORM_SEC_CAPS = xPPC32_AIX5 ; then
sewardj03d86f22006-10-17 00:57:24 +00001458 mflag_secondary=-q32
1459fi
1460
1461
sewardj0ad46092006-03-02 17:09:16 +00001462AC_ARG_WITH(mpicc,
sewardjb70a6132006-05-27 21:14:09 +00001463 [ --with-mpicc= Specify name of MPI2-ised C compiler],
sewardj0ad46092006-03-02 17:09:16 +00001464 MPI_CC=$withval
1465)
sewardj03d86f22006-10-17 00:57:24 +00001466AC_SUBST(MPI_CC)
1467
1468## See if MPI_CC works for the primary target
1469##
1470AC_MSG_CHECKING([primary target for usable MPI2-compliant C compiler and mpi.h])
sewardj0ad46092006-03-02 17:09:16 +00001471saved_CC=$CC
sewardjde4f3842006-03-09 02:41:41 +00001472saved_CFLAGS=$CFLAGS
sewardj0ad46092006-03-02 17:09:16 +00001473CC=$MPI_CC
sewardje9fa5062006-03-12 18:29:18 +00001474CFLAGS=$mflag_primary
sewardjd3fcc642006-03-09 02:49:56 +00001475AC_TRY_LINK([
sewardj1a85e602006-03-08 15:26:10 +00001476#include <mpi.h>
1477#include <stdio.h>
sewardjde4f3842006-03-09 02:41:41 +00001478],[
1479 int r = MPI_Init(NULL,NULL);
1480 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1481 return r;
1482], [
sewardj03d86f22006-10-17 00:57:24 +00001483ac_have_mpi2_pri=yes
sewardj1a85e602006-03-08 15:26:10 +00001484AC_MSG_RESULT([yes, $MPI_CC])
sewardj80637752006-03-02 13:48:21 +00001485], [
sewardj03d86f22006-10-17 00:57:24 +00001486ac_have_mpi2_pri=no
sewardj80637752006-03-02 13:48:21 +00001487AC_MSG_RESULT([no])
1488])
sewardj0ad46092006-03-02 17:09:16 +00001489CC=$saved_CC
sewardjde4f3842006-03-09 02:41:41 +00001490CFLAGS=$saved_CFLAGS
sewardj03d86f22006-10-17 00:57:24 +00001491AM_CONDITIONAL(BUILD_MPIWRAP_PRI, test x$ac_have_mpi2_pri = xyes)
sewardj80637752006-03-02 13:48:21 +00001492
sewardj03d86f22006-10-17 00:57:24 +00001493## See if MPI_CC works for the secondary target. Complication: what if
1494## there is no secondary target? We need this to then fail.
1495## Kludge this by making MPI_CC something which will surely fail in
1496## such a case.
1497##
1498AC_MSG_CHECKING([secondary target for usable MPI2-compliant C compiler and mpi.h])
1499saved_CC=$CC
1500saved_CFLAGS=$CFLAGS
njn7fd6d382009-01-22 21:56:32 +00001501if test x$VGCONF_PLATFORM_SEC_CAPS = x ; then
sewardj03d86f22006-10-17 00:57:24 +00001502 CC="$MPI_CC this will surely fail"
1503else
1504 CC=$MPI_CC
1505fi
1506CFLAGS=$mflag_secondary
1507AC_TRY_LINK([
1508#include <mpi.h>
1509#include <stdio.h>
1510],[
1511 int r = MPI_Init(NULL,NULL);
1512 r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL );
1513 return r;
1514], [
1515ac_have_mpi2_sec=yes
1516AC_MSG_RESULT([yes, $MPI_CC])
1517], [
1518ac_have_mpi2_sec=no
1519AC_MSG_RESULT([no])
1520])
1521CC=$saved_CC
1522CFLAGS=$saved_CFLAGS
1523AM_CONDITIONAL(BUILD_MPIWRAP_SEC, test x$ac_have_mpi2_sec = xyes)
sewardj80637752006-03-02 13:48:21 +00001524
1525
njn7fd6d382009-01-22 21:56:32 +00001526#----------------------------------------------------------------------------
1527# Other library checks
1528#----------------------------------------------------------------------------
sewardj493c4ef2008-12-13 16:45:19 +00001529# There now follow some tests for QtCore, Boost, and OpenMP. These
1530# tests are present because Drd has some regression tests that use
1531# these packages. All regression test programs all compiled only
1532# for the primary target. And so it is important that the configure
1533# checks that follow, use the correct -m32 or -m64 flag for the
1534# primary target (called $mflag_primary). Otherwise, we can end up
1535# in a situation (eg) where, on amd64-linux, the test for Boost checks
1536# for usable 64-bit Boost facilities, but because we are doing a 32-bit
1537# only build (meaning, the primary target is x86-linux), the build
1538# of the regtest programs that use Boost fails, because they are
1539# build as 32-bit (IN THIS EXAMPLE).
1540#
1541# Hence: ALWAYS USE $mflag_primary FOR CONFIGURE TESTS FOR FACILITIES
1542# NEEDED BY THE REGRESSION TEST PROGRAMS.
1543
1544
bart21d3cfc2008-08-02 09:08:17 +00001545# The test below verifies whether the QtCore package been installed.
1546# This test works as follows:
1547# - If pkg-config was not installed at the time autogen.sh was run,
1548# the definition of the PKG_CHECK_EXISTS() macro will not be found by
1549# autogen.sh. Augogen.sh will generate a configure script that prints
1550# a warning about pkg-config and proceeds as if Qt4 has not been installed.
1551# - If pkg-config was installed at the time autogen.sh was run,
1552# the generated configure script will try to detect the presence of the
1553# Qt4 QtCore library by looking up compile and linker flags in the file
1554# called QtCore.pc.
1555# - pkg-config settings can be overridden via the configure variables
1556# QTCORE_CFLAGS and QTCORE_LIBS (added by the pkg-config m4 macro's to the
1557# configure script -- see also ./configure --help).
1558# - The QTCORE_CFLAGS and QTCORE_LIBS configure variables can be used even if
1559# the pkg-config executable is not present on the system on which the
1560# configure script is run.
bart41ac62a2008-07-07 16:58:03 +00001561
bart21d3cfc2008-08-02 09:08:17 +00001562ifdef(
1563 [PKG_CHECK_EXISTS],
1564 [PKG_CHECK_EXISTS(
1565 [QtCore],
1566 [
1567 PKG_CHECK_MODULES([QTCORE], [QtCore])
bart11fbd892008-09-21 15:00:58 +00001568 # Paranoia: don't trust the result reported by pkg-config, but when
1569 # pkg-config reports that QtCore has been found, verify whether linking
1570 # programs with QtCore succeeds.
1571 AC_LANG(C++)
1572 safe_CXXFLAGS="${CXXFLAGS}"
sewardj493c4ef2008-12-13 16:45:19 +00001573 CXXFLAGS="${QTCORE_CFLAGS} ${QTCORE_LIBS} $mflag_primary"
bart11fbd892008-09-21 15:00:58 +00001574 AC_TRY_LINK(
1575 [#include <QMutex>],
1576 [QMutex Mutex;],
1577 [ac_have_qtcore=yes],
1578 [
1579 AC_MSG_WARN([Although pkg-config detected Qt4, linking Qt4 programs fails. Skipping Qt4.])
1580 ac_have_qtcore=no
1581 ]
1582 )
1583 CXXFLAGS="${safe_CXXFLAGS}"
bart21d3cfc2008-08-02 09:08:17 +00001584 ],
1585 [
1586 ac_have_qtcore=no
1587 ]
1588 )
1589 ],
1590 AC_MSG_WARN([pkg-config has not been installed or is too old.])
1591 AC_MSG_WARN([Detection of Qt4 will be skipped.])
1592 [ac_have_qtcore=no]
1593)
bart41ac62a2008-07-07 16:58:03 +00001594
1595AM_CONDITIONAL([HAVE_QTCORE], [test x$ac_have_qtcore = xyes])
1596
1597
bart62f54e42008-07-28 11:35:10 +00001598# Test for QMutex::tryLock(int), which has been introduced in Qt 4.3.
1599# See also http://doc.trolltech.com/4.3/qmutex.html.
1600if test x$ac_have_qtcore = xyes; then
1601 AC_MSG_CHECKING([for Qt4 QMutex::tryLock(int)])
1602 AC_LANG(C++)
bart21d3cfc2008-08-02 09:08:17 +00001603 safe_CXXFLAGS="${CXXFLAGS}"
sewardj493c4ef2008-12-13 16:45:19 +00001604 CXXFLAGS="${QTCORE_CFLAGS} $mflag_primary"
bart62f54e42008-07-28 11:35:10 +00001605 AC_TRY_COMPILE([
1606 #include <QtCore/QMutex>
1607 ],
1608 [
1609 QMutex M;
1610 M.tryLock(1);
1611 M.unlock();
1612 return 0;
1613 ],
1614 [
1615 AC_MSG_RESULT([yes])
1616 AC_DEFINE([HAVE_QTCORE_QMUTEX_TRYLOCK_INT], [1], [Define to 1 if the installed version of Qt4 provides QMutex::tryLock(int).])
1617 ],
1618 [
1619 AC_MSG_RESULT([no])
1620 ])
bart21d3cfc2008-08-02 09:08:17 +00001621 CXXFLAGS="${safe_CXXFLAGS}"
bart62f54e42008-07-28 11:35:10 +00001622 AC_LANG(C)
1623fi
1624
1625
sewardj493c4ef2008-12-13 16:45:19 +00001626# Check whether the boost library 1.35 or later has been installed.
1627# The Boost.Threads library has undergone a major rewrite in version 1.35.0.
1628
1629AC_MSG_CHECKING([for boost])
1630
1631AC_LANG(C++)
1632safe_CXXFLAGS=$CXXFLAGS
1633CXXFLAGS="-lboost_thread-mt $mflag_primary"
1634
1635AC_LINK_IFELSE(
1636[
1637#include <boost/thread.hpp>
1638static void thread_func(void)
1639{ }
1640int main(int argc, char** argv)
1641{
1642 boost::thread t(thread_func);
1643 return 0;
1644}
1645],
1646[
1647ac_have_boost_1_35=yes
1648AC_SUBST([BOOST_CFLAGS], [])
1649AC_SUBST([BOOST_LIBS], ["${CXXFLAGS}"])
1650AC_MSG_RESULT([yes])
1651], [
1652ac_have_boost_1_35=no
1653AC_MSG_RESULT([no])
1654])
1655
1656CXXFLAGS=$safe_CXXFLAGS
1657AC_LANG(C)
1658
1659AM_CONDITIONAL([HAVE_BOOST_1_35], [test x$ac_have_boost_1_35 = xyes])
1660
1661
1662# does this compiler support -fopenmp, does it have the include file
1663# <omp.h> and does it have libgomp ?
1664
1665AC_MSG_CHECKING([for OpenMP])
1666
1667safe_CFLAGS=$CFLAGS
sewardjc876a2f2009-01-22 22:44:30 +00001668CFLAGS="-fopenmp $mflag_primary"
sewardj493c4ef2008-12-13 16:45:19 +00001669
1670AC_LINK_IFELSE(
1671[
1672#include <omp.h>
1673int main(int argc, char** argv)
1674{
1675 omp_set_dynamic(0);
1676 return 0;
1677}
1678],
1679[
1680ac_have_openmp=yes
1681AC_MSG_RESULT([yes])
1682], [
1683ac_have_openmp=no
1684AC_MSG_RESULT([no])
1685])
1686CFLAGS=$safe_CFLAGS
1687
1688AM_CONDITIONAL([HAVE_OPENMP], [test x$ac_have_openmp = xyes])
1689
1690
sewardjc876a2f2009-01-22 22:44:30 +00001691# does this compiler have built-in functions for atomic memory access ?
1692AC_MSG_CHECKING([if gcc supports __sync_bool_compare_and_swap])
1693
1694safe_CFLAGS=$CFLAGS
1695CFLAGS="$mflag_primary"
1696
1697AC_TRY_LINK(,
1698[
1699 int variable = 1;
1700 return (__sync_bool_compare_and_swap(&variable, 1, 2)
1701 && __sync_add_and_fetch(&variable, 1) ? 1 : 0)
1702],
1703[
1704 AC_MSG_RESULT([yes])
1705 AC_DEFINE(HAVE_BUILTIN_ATOMIC, 1, [Define to 1 if gcc supports __sync_bool_compare_and_swap() a.o.])
1706],
1707[
1708 AC_MSG_RESULT([no])
1709])
1710
1711CFLAGS=$safe_CFLAGS
1712
1713
njn7fd6d382009-01-22 21:56:32 +00001714#----------------------------------------------------------------------------
1715# Ok. We're done checking.
1716#----------------------------------------------------------------------------
sewardj80637752006-03-02 13:48:21 +00001717
gobrye721a522002-03-22 13:38:30 +00001718AC_OUTPUT(
sewardjde4a1d02002-03-22 01:27:54 +00001719 Makefile
njn25cac76cb2002-09-23 11:21:57 +00001720 valgrind.spec
muellerbddd6072003-11-19 21:50:07 +00001721 valgrind.pc
dirk07596a22008-04-25 11:33:30 +00001722 glibc-2.X.supp
njn254d542432002-09-23 16:09:39 +00001723 docs/Makefile
njn3e986b22004-11-30 10:43:45 +00001724 docs/lib/Makefile
1725 docs/images/Makefile
njnf7c00b12005-07-19 21:46:19 +00001726 docs/internals/Makefile
njn3e986b22004-11-30 10:43:45 +00001727 docs/xml/Makefile
njn254d542432002-09-23 16:09:39 +00001728 tests/Makefile
njnc2e7f482002-09-27 08:44:17 +00001729 tests/vg_regtest
njnec0c27a2005-12-10 23:11:28 +00001730 perf/Makefile
1731 perf/vg_perf
njn254d542432002-09-23 16:09:39 +00001732 include/Makefile
sewardj0f8881b2006-10-18 01:16:57 +00001733 include/vki/Makefile
njn7a6e7462002-11-09 17:53:30 +00001734 auxprogs/Makefile
njn25ab726032002-09-23 16:24:41 +00001735 coregrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001736 memcheck/Makefile
1737 memcheck/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001738 memcheck/tests/amd64/Makefile
njnc6168192004-11-29 13:54:10 +00001739 memcheck/tests/x86/Makefile
njn3b3b76d2009-01-19 03:44:19 +00001740 memcheck/tests/linux/Makefile
njna454ec02009-01-19 03:16:59 +00001741 memcheck/tests/x86-linux/Makefile
njn29a5c012009-05-06 06:15:55 +00001742 memcheck/perf/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001743 memcheck/docs/Makefile
1744 cachegrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001745 cachegrind/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001746 cachegrind/tests/x86/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001747 cachegrind/docs/Makefile
njnf2df9b52002-10-04 11:35:47 +00001748 cachegrind/cg_annotate
weidendoa17f2a32006-03-20 10:27:30 +00001749 callgrind/Makefile
1750 callgrind/callgrind_annotate
1751 callgrind/callgrind_control
1752 callgrind/tests/Makefile
1753 callgrind/docs/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001754 helgrind/Makefile
njnf2df9b52002-10-04 11:35:47 +00001755 helgrind/tests/Makefile
njn83157fc2002-10-03 10:07:34 +00001756 helgrind/docs/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001757 massif/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001758 massif/tests/Makefile
njn734b8052007-11-01 04:40:37 +00001759 massif/perf/Makefile
nethercotec9f36922004-02-14 16:40:02 +00001760 massif/docs/Makefile
njnd5a8d242007-11-02 20:44:57 +00001761 massif/ms_print
njn25cac76cb2002-09-23 11:21:57 +00001762 lackey/Makefile
njnf2df9b52002-10-04 11:35:47 +00001763 lackey/tests/Makefile
njn83157fc2002-10-03 10:07:34 +00001764 lackey/docs/Makefile
njn25cac76cb2002-09-23 11:21:57 +00001765 none/Makefile
1766 none/tests/Makefile
njnc6168192004-11-29 13:54:10 +00001767 none/tests/amd64/Makefile
cerion85665ca2005-06-20 15:51:07 +00001768 none/tests/ppc32/Makefile
sewardj2c48c7b2005-11-29 13:05:56 +00001769 none/tests/ppc64/Makefile
njnc6168192004-11-29 13:54:10 +00001770 none/tests/x86/Makefile
njn0458a122009-02-13 06:23:46 +00001771 none/tests/linux/Makefile
njn06ca3322009-04-15 23:10:04 +00001772 none/tests/x86-linux/Makefile
njn9bc8c002002-10-02 13:49:13 +00001773 none/docs/Makefile
sewardj99a2ceb2007-11-09 12:30:36 +00001774 exp-omega/Makefile
1775 exp-omega/tests/Makefile
1776 exp-omega/docs/Makefile
sewardj9c606bd2008-09-18 18:12:50 +00001777 exp-ptrcheck/Makefile
1778 exp-ptrcheck/tests/Makefile
1779 exp-ptrcheck/docs/Makefile
bartccf17de2008-07-04 15:14:35 +00001780 drd/Makefile
1781 drd/docs/Makefile
1782 drd/scripts/download-and-build-splash2
1783 drd/tests/Makefile
bart0b2b4622008-06-17 19:19:16 +00001784)
gobry3b777892002-04-04 09:18:39 +00001785
1786cat<<EOF
1787
njn311303f2009-02-06 03:46:50 +00001788 Maximum build arch: ${ARCH_MAX}
1789 Primary build arch: ${VGCONF_ARCH_PRI}
1790 Build OS: ${VGCONF_OS}
njn7fd6d382009-01-22 21:56:32 +00001791 Primary build target: ${VGCONF_PLATFORM_PRI_CAPS}
1792 Secondary build target: ${VGCONF_PLATFORM_SEC_CAPS}
sewardje95d94f2008-09-19 09:02:19 +00001793 Default supp files: ${DEFAULT_SUPP}
gobry3b777892002-04-04 09:18:39 +00001794
gobry3b777892002-04-04 09:18:39 +00001795EOF