sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 1 | |
| 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 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 10 | # Process this file with autoconf to produce a configure script. |
sewardj | 17c4eb1 | 2007-12-11 00:50:54 +0000 | [diff] [blame^] | 11 | AC_INIT(Valgrind, 3.4.0.SVN, valgrind-users@lists.sourceforge.net) |
njn | 04e1698 | 2005-05-31 00:23:43 +0000 | [diff] [blame] | 12 | AC_CONFIG_SRCDIR(coregrind/m_main.c) |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 13 | AM_CONFIG_HEADER(config.h) |
thughes | 6dbad73 | 2004-08-29 09:46:38 +0000 | [diff] [blame] | 14 | AM_INIT_AUTOMAKE |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 15 | |
gobry | b0ed467 | 2002-03-27 20:58:58 +0000 | [diff] [blame] | 16 | AM_MAINTAINER_MODE |
| 17 | |
njn | 8738c28 | 2004-11-23 16:31:56 +0000 | [diff] [blame] | 18 | # Where is VEX ? |
njn | fe40894 | 2004-11-23 17:52:24 +0000 | [diff] [blame] | 19 | # 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 | # |
sewardj | 85a9dca | 2005-07-26 10:42:57 +0000 | [diff] [blame] | 22 | # AS_HELP_STRING([--with-vex], [Vex directory]), |
njn | fe40894 | 2004-11-23 17:52:24 +0000 | [diff] [blame] | 23 | # |
njn | 8738c28 | 2004-11-23 16:31:56 +0000 | [diff] [blame] | 24 | AC_ARG_WITH(vex, |
sewardj | 85a9dca | 2005-07-26 10:42:57 +0000 | [diff] [blame] | 25 | [ --with-vex=/path/to/vex/dir Vex directory], |
njn | 8738c28 | 2004-11-23 16:31:56 +0000 | [diff] [blame] | 26 | [ |
| 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 | [ |
njn | 17adf1e | 2005-09-16 03:59:37 +0000 | [diff] [blame] | 32 | VEX_DIR='$(top_srcdir)/VEX' |
njn | 8738c28 | 2004-11-23 16:31:56 +0000 | [diff] [blame] | 33 | ]) |
sewardj | 50629ec | 2004-11-22 13:44:11 +0000 | [diff] [blame] | 34 | AC_SUBST(VEX_DIR) |
| 35 | |
njn | 657d951 | 2005-06-24 15:20:52 +0000 | [diff] [blame] | 36 | # "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. |
| 51 | AC_SUBST([DISTCHECK_CONFIGURE_FLAGS], [--with-vex=$VEX_DIR]) |
| 52 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 53 | # Checks for programs. |
sewardj | b5f6f51 | 2005-03-10 23:59:00 +0000 | [diff] [blame] | 54 | CFLAGS="-Wno-long-long" |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 55 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 56 | AC_PROG_LN_S |
| 57 | AC_PROG_CC |
njn | ca0518d | 2004-11-26 19:34:36 +0000 | [diff] [blame] | 58 | ##AM_PROG_CC_C_O |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 59 | AC_PROG_CPP |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 60 | AC_PROG_CXX |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 61 | AC_PROG_RANLIB |
| 62 | |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 63 | # Check for the compiler support |
| 64 | if test "${GCC}" != "yes" ; then |
| 65 | AC_MSG_ERROR([Valgrind relies on GCC to be compiled]) |
| 66 | fi |
| 67 | |
sewardj | 2f68595 | 2002-12-22 19:32:23 +0000 | [diff] [blame] | 68 | # figure out where perl lives |
| 69 | AC_PATH_PROG(PERL, perl) |
| 70 | |
njn | 9315df3 | 2003-04-16 20:50:50 +0000 | [diff] [blame] | 71 | # figure out where gdb lives |
| 72 | AC_PATH_PROG(GDB, gdb) |
njn | fe40894 | 2004-11-23 17:52:24 +0000 | [diff] [blame] | 73 | AC_DEFINE_UNQUOTED(GDB_PATH, "$GDB", [path to GDB]) |
njn | 9315df3 | 2003-04-16 20:50:50 +0000 | [diff] [blame] | 74 | |
daywalker | 48ccca5 | 2002-04-15 00:31:58 +0000 | [diff] [blame] | 75 | # some older automake's don't have it so try something on our own |
| 76 | ifdef([AM_PROG_AS],[AM_PROG_AS], |
| 77 | [ |
gobry | 1be1985 | 2002-03-26 20:44:55 +0000 | [diff] [blame] | 78 | AS="${CC}" |
| 79 | AC_SUBST(AS) |
gobry | 3b77789 | 2002-04-04 09:18:39 +0000 | [diff] [blame] | 80 | |
gobry | 1be1985 | 2002-03-26 20:44:55 +0000 | [diff] [blame] | 81 | ASFLAGS="" |
| 82 | AC_SUBST(ASFLAGS) |
daywalker | 48ccca5 | 2002-04-15 00:31:58 +0000 | [diff] [blame] | 83 | ]) |
gobry | 3b77789 | 2002-04-04 09:18:39 +0000 | [diff] [blame] | 84 | |
gobry | 3b77789 | 2002-04-04 09:18:39 +0000 | [diff] [blame] | 85 | |
sewardj | 535c50f | 2005-06-04 23:14:53 +0000 | [diff] [blame] | 86 | # We don't want gcc < 3.0 |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 87 | AC_MSG_CHECKING([for a supported version of gcc]) |
| 88 | |
daywalker | 870ac4c | 2002-05-21 00:09:48 +0000 | [diff] [blame] | 89 | gcc_version=`${CC} --version | head -n 1` |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 90 | |
| 91 | case "${gcc_version}" in |
| 92 | gcc-2.7.*) |
| 93 | AC_MSG_RESULT([no (${gcc_version})]) |
sewardj | 535c50f | 2005-06-04 23:14:53 +0000 | [diff] [blame] | 94 | AC_MSG_ERROR([please use a recent (>= gcc-3.0) version of gcc]) |
| 95 | ;; |
| 96 | gcc-2.8.*) |
| 97 | AC_MSG_RESULT([no (${gcc_version})]) |
| 98 | AC_MSG_ERROR([please use a recent (>= gcc-3.0) version of gcc]) |
| 99 | ;; |
| 100 | gcc-2.9*) |
| 101 | AC_MSG_RESULT([no (${gcc_version})]) |
| 102 | AC_MSG_ERROR([please use a recent (>= gcc-3.0) version of gcc]) |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 103 | ;; |
| 104 | |
| 105 | *) |
| 106 | AC_MSG_RESULT([ok (${gcc_version})]) |
| 107 | ;; |
| 108 | esac |
| 109 | |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 110 | |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 111 | # Checks for the platform, with the aim of setting VG_ARCH. Note |
| 112 | # that VG_ARCH must be set to reflect the most that this CPU can |
| 113 | # do: for example if it is a 64-bit capable PowerPC, then it must |
| 114 | # be set to ppc64 and not ppc32. Ditto for amd64. |
| 115 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 116 | AC_CANONICAL_HOST |
| 117 | |
| 118 | AC_MSG_CHECKING([for a supported CPU]) |
nethercote | 888ecb7 | 2004-08-23 14:54:40 +0000 | [diff] [blame] | 119 | AC_SUBST(VG_ARCH) |
sewardj | bc692db | 2006-01-04 03:31:07 +0000 | [diff] [blame] | 120 | |
sewardj | 9b0567a | 2006-01-17 02:56:18 +0000 | [diff] [blame] | 121 | AC_SUBST(VG_ARCH_ALL) |
| 122 | VG_ARCH_ALL="amd64 ppc32 ppc64 x86" |
| 123 | |
sewardj | 45f4e7c | 2005-09-27 19:20:21 +0000 | [diff] [blame] | 124 | AC_SUBST(VALT_LOAD_ADDRESS) |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 125 | |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 126 | case "${host_cpu}" in |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 127 | i?86) |
| 128 | AC_MSG_RESULT([ok (${host_cpu})]) |
nethercote | 888ecb7 | 2004-08-23 14:54:40 +0000 | [diff] [blame] | 129 | VG_ARCH="x86" |
sewardj | d7baad4 | 2006-05-20 01:13:38 +0000 | [diff] [blame] | 130 | valt_load_address_normal="0x38000000" |
| 131 | valt_load_address_inner="0x28000000" |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 132 | ;; |
| 133 | |
njn | fe40894 | 2004-11-23 17:52:24 +0000 | [diff] [blame] | 134 | x86_64) |
| 135 | AC_MSG_RESULT([ok (${host_cpu})]) |
| 136 | VG_ARCH="amd64" |
sewardj | d7baad4 | 2006-05-20 01:13:38 +0000 | [diff] [blame] | 137 | valt_load_address_normal="0x38000000" |
| 138 | valt_load_address_inner="0x28000000" |
njn | fe40894 | 2004-11-23 17:52:24 +0000 | [diff] [blame] | 139 | ;; |
| 140 | |
sewardj | 2c48c7b | 2005-11-29 13:05:56 +0000 | [diff] [blame] | 141 | powerpc64) |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 142 | # This value can only happen on Linux, not on AIX |
sewardj | 2c48c7b | 2005-11-29 13:05:56 +0000 | [diff] [blame] | 143 | AC_MSG_RESULT([ok (${host_cpu})]) |
| 144 | VG_ARCH="ppc64" |
sewardj | d7baad4 | 2006-05-20 01:13:38 +0000 | [diff] [blame] | 145 | valt_load_address_normal="0x38000000" |
| 146 | valt_load_address_inner="0x28000000" |
sewardj | 2c48c7b | 2005-11-29 13:05:56 +0000 | [diff] [blame] | 147 | ;; |
| 148 | |
| 149 | powerpc) |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 150 | # Complexity. 'powerpc' on AIX implies a 64-bit capable CPU. |
| 151 | # Whereas in Linux that means only a 32-bit capable CPU. |
cerion | 85665ca | 2005-06-20 15:51:07 +0000 | [diff] [blame] | 152 | AC_MSG_RESULT([ok (${host_cpu})]) |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 153 | case "${host_os}" in |
| 154 | aix5.*) |
| 155 | VG_ARCH="ppc64" |
| 156 | ;; |
| 157 | *) |
| 158 | VG_ARCH="ppc32" |
| 159 | ;; |
| 160 | esac |
sewardj | d7baad4 | 2006-05-20 01:13:38 +0000 | [diff] [blame] | 161 | valt_load_address_normal="0x38000000" |
| 162 | valt_load_address_inner="0x28000000" |
nethercote | 9bcc906 | 2004-10-13 13:50:01 +0000 | [diff] [blame] | 163 | ;; |
| 164 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 165 | *) |
| 166 | AC_MSG_RESULT([no (${host_cpu})]) |
nethercote | 81d5c66 | 2004-10-13 13:18:51 +0000 | [diff] [blame] | 167 | AC_MSG_ERROR([Unsupported host architecture. Sorry]) |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 168 | ;; |
| 169 | esac |
| 170 | |
sewardj | 45f4e7c | 2005-09-27 19:20:21 +0000 | [diff] [blame] | 171 | # Check if this should be built as an inner Valgrind, to be run within |
| 172 | # another Valgrind. Choose the load address accordingly. |
sewardj | 86e992f | 2006-01-28 18:39:09 +0000 | [diff] [blame] | 173 | AC_CACHE_CHECK([for use as an inner Valgrind], vg_cv_inner, |
| 174 | [AC_ARG_ENABLE(inner, |
| 175 | [ --enable-inner enables self-hosting], |
| 176 | [vg_cv_inner=$enableval], |
| 177 | [vg_cv_inner=no])]) |
sewardj | 45f4e7c | 2005-09-27 19:20:21 +0000 | [diff] [blame] | 178 | if test "$vg_cv_inner" = yes; then |
| 179 | AC_DEFINE([ENABLE_INNER], 1, [configured to run as an inner Valgrind]) |
| 180 | VALT_LOAD_ADDRESS=$valt_load_address_inner |
| 181 | else |
| 182 | VALT_LOAD_ADDRESS=$valt_load_address_normal |
| 183 | fi |
| 184 | |
sewardj | 86e992f | 2006-01-28 18:39:09 +0000 | [diff] [blame] | 185 | # Sometimes it's convenient to subvert the bi-arch build system and |
| 186 | # just have a single build even though the underlying platform is |
| 187 | # capable of both. Hence handle --enable-only64bit and |
| 188 | # --enable-only32bit. Complain if both are issued :-) |
| 189 | |
| 190 | # Check if a 64-bit only build has been requested |
| 191 | AC_CACHE_CHECK([for a 64-bit only build], vg_cv_only64bit, |
| 192 | [AC_ARG_ENABLE(only64bit, |
| 193 | [ --enable-only64bit do a 64-bit only build], |
| 194 | [vg_cv_only64bit=$enableval], |
| 195 | [vg_cv_only64bit=no])]) |
| 196 | |
| 197 | # Check if a 32-bit only build has been requested |
| 198 | AC_CACHE_CHECK([for a 32-bit only build], vg_cv_only32bit, |
| 199 | [AC_ARG_ENABLE(only32bit, |
| 200 | [ --enable-only32bit do a 32-bit only build], |
| 201 | [vg_cv_only32bit=$enableval], |
| 202 | [vg_cv_only32bit=no])]) |
| 203 | |
| 204 | # Stay sane |
| 205 | if test x$vg_cv_only64bit = xyes -a x$vg_cv_only32bit = xyes; then |
| 206 | AC_MSG_ERROR( |
| 207 | [Nonsensical: both --enable-only64bit and --enable-only32bit.]) |
| 208 | fi |
| 209 | |
| 210 | |
| 211 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 212 | AC_MSG_CHECKING([for a supported OS]) |
nethercote | 888ecb7 | 2004-08-23 14:54:40 +0000 | [diff] [blame] | 213 | AC_SUBST(VG_OS) |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 214 | |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 215 | case "${host_os}" in |
mueller | 8c68e04 | 2004-01-03 15:21:14 +0000 | [diff] [blame] | 216 | *linux*) |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 217 | AC_MSG_RESULT([ok (${host_os})]) |
nethercote | 888ecb7 | 2004-08-23 14:54:40 +0000 | [diff] [blame] | 218 | VG_OS="linux" |
mueller | 8c68e04 | 2004-01-03 15:21:14 +0000 | [diff] [blame] | 219 | |
| 220 | # Ok, this is linux. Check the kernel version |
| 221 | AC_MSG_CHECKING([for the kernel version]) |
| 222 | |
| 223 | kernel=`uname -r` |
| 224 | |
| 225 | case "${kernel}" in |
| 226 | 2.6.*) |
| 227 | AC_MSG_RESULT([2.6 family (${kernel})]) |
| 228 | AC_DEFINE([KERNEL_2_6], 1, [Define to 1 if you're using Linux 2.6.x]) |
| 229 | ;; |
| 230 | |
| 231 | 2.4.*) |
| 232 | AC_MSG_RESULT([2.4 family (${kernel})]) |
| 233 | AC_DEFINE([KERNEL_2_4], 1, [Define to 1 if you're using Linux 2.4.x]) |
| 234 | ;; |
| 235 | |
mueller | 8c68e04 | 2004-01-03 15:21:14 +0000 | [diff] [blame] | 236 | *) |
| 237 | AC_MSG_RESULT([unsupported (${kernel})]) |
nethercote | 4fa681f | 2004-11-08 17:51:39 +0000 | [diff] [blame] | 238 | AC_MSG_ERROR([Valgrind works on kernels 2.4, 2.6]) |
mueller | 8c68e04 | 2004-01-03 15:21:14 +0000 | [diff] [blame] | 239 | ;; |
| 240 | esac |
| 241 | |
| 242 | ;; |
| 243 | |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 244 | aix5.1.*) |
| 245 | AC_MSG_RESULT([ok (${host_os})]) |
| 246 | VG_OS="aix5" |
| 247 | ;; |
| 248 | aix5.2.*) |
| 249 | AC_MSG_RESULT([ok (${host_os})]) |
| 250 | VG_OS="aix5" |
| 251 | ;; |
| 252 | aix5.3.*) |
| 253 | AC_MSG_RESULT([ok (${host_os})]) |
| 254 | VG_OS="aix5" |
| 255 | ;; |
| 256 | |
mueller | 8c68e04 | 2004-01-03 15:21:14 +0000 | [diff] [blame] | 257 | *freebsd*) |
| 258 | AC_MSG_RESULT([ok (${host_os})]) |
nethercote | 888ecb7 | 2004-08-23 14:54:40 +0000 | [diff] [blame] | 259 | VG_OS="freebsd" |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 260 | ;; |
| 261 | |
| 262 | *) |
| 263 | AC_MSG_RESULT([no (${host_os})]) |
mueller | 8c68e04 | 2004-01-03 15:21:14 +0000 | [diff] [blame] | 264 | AC_MSG_ERROR([Valgrind is operating system specific. Sorry. Please consider doing a port.]) |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 265 | ;; |
| 266 | esac |
| 267 | |
tom | d639839 | 2006-06-07 17:44:36 +0000 | [diff] [blame] | 268 | # If we are building on a 64 bit platform test to see if the system |
| 269 | # supports building 32 bit programs and disable 32 bit support if it |
| 270 | # does not support building 32 bit programs |
| 271 | |
| 272 | case "$VG_ARCH-$VG_OS" in |
| 273 | amd64-linux|ppc64-linux) |
| 274 | AC_MSG_CHECKING([for 32 bit build support]) |
| 275 | safe_CFLAGS=$CFLAGS |
| 276 | CFLAGS="-m32" |
| 277 | AC_TRY_LINK(, [ |
| 278 | int main () { return 0 ; } |
| 279 | ], |
| 280 | [ |
| 281 | AC_MSG_RESULT([yes]) |
| 282 | ], [ |
| 283 | vg_cv_only64bit="yes" |
| 284 | AC_MSG_RESULT([no]) |
| 285 | ]) |
| 286 | CFLAGS=$safe_CFLAGS;; |
| 287 | esac |
| 288 | |
| 289 | if test x$vg_cv_only64bit = xyes -a x$vg_cv_only32bit = xyes; then |
| 290 | AC_MSG_ERROR( |
| 291 | [--enable-only32bit was specified but system does not support 32 bit builds]) |
| 292 | fi |
nethercote | 888ecb7 | 2004-08-23 14:54:40 +0000 | [diff] [blame] | 293 | |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 294 | # Establish VG_PLATFORM_PRI. This is the primary build target. The |
| 295 | # entire system, including regression and performance tests, will be |
sewardj | bc692db | 2006-01-04 03:31:07 +0000 | [diff] [blame] | 296 | # built for this target. |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 297 | # |
sewardj | bc692db | 2006-01-04 03:31:07 +0000 | [diff] [blame] | 298 | # Also establish VG_PLATFORM_SEC, the secondary build target, if |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 299 | # possible. The system will also be built for this target, but not |
sewardj | bc692db | 2006-01-04 03:31:07 +0000 | [diff] [blame] | 300 | # the regression or performance tests. |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 301 | # |
| 302 | AC_MSG_CHECKING([for a supported CPU/OS combination]) |
nethercote | 888ecb7 | 2004-08-23 14:54:40 +0000 | [diff] [blame] | 303 | |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 304 | AC_SUBST(VG_PLATFORM_PRI) |
| 305 | AC_SUBST(VG_PLATFORM_SEC) |
| 306 | |
| 307 | case "$VG_ARCH-$VG_OS" in |
| 308 | x86-linux) |
| 309 | VG_PLATFORM_PRI="X86_LINUX" |
| 310 | VG_PLATFORM_SEC="" |
sewardj | 3e38ce0 | 2004-11-23 01:17:29 +0000 | [diff] [blame] | 311 | AC_MSG_RESULT([ok (${host_cpu}-${host_os})]) |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 312 | ;; |
| 313 | amd64-linux) |
sewardj | 86e992f | 2006-01-28 18:39:09 +0000 | [diff] [blame] | 314 | if test x$vg_cv_only64bit = xyes; then |
| 315 | VG_PLATFORM_PRI="AMD64_LINUX" |
| 316 | VG_PLATFORM_SEC="" |
| 317 | elif test x$vg_cv_only32bit = xyes; then |
| 318 | VG_PLATFORM_PRI="X86_LINUX" |
| 319 | VG_PLATFORM_SEC="" |
| 320 | else |
| 321 | VG_PLATFORM_PRI="AMD64_LINUX" |
| 322 | VG_PLATFORM_SEC="X86_LINUX" |
| 323 | fi |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 324 | AC_MSG_RESULT([ok (${host_cpu}-${host_os})]) |
| 325 | ;; |
| 326 | ppc32-linux) |
| 327 | VG_PLATFORM_PRI="PPC32_LINUX" |
| 328 | VG_PLATFORM_SEC="" |
| 329 | AC_MSG_RESULT([ok (${host_cpu}-${host_os})]) |
| 330 | ;; |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 331 | ppc64-aix5) |
| 332 | if test x$vg_cv_only64bit = xyes; then |
| 333 | VG_PLATFORM_PRI="PPC64_AIX5" |
| 334 | VG_PLATFORM_SEC="" |
| 335 | elif test x$vg_cv_only32bit = xyes; then |
| 336 | VG_PLATFORM_PRI="PPC32_AIX5" |
| 337 | VG_PLATFORM_SEC="" |
| 338 | else |
| 339 | VG_PLATFORM_PRI="PPC64_AIX5" |
| 340 | VG_PLATFORM_SEC="PPC32_AIX5" |
| 341 | fi |
| 342 | AC_MSG_RESULT([ok (${host_cpu}-${host_os})]) |
| 343 | ;; |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 344 | ppc64-linux) |
sewardj | 86e992f | 2006-01-28 18:39:09 +0000 | [diff] [blame] | 345 | if test x$vg_cv_only64bit = xyes; then |
| 346 | VG_PLATFORM_PRI="PPC64_LINUX" |
| 347 | VG_PLATFORM_SEC="" |
| 348 | elif test x$vg_cv_only32bit = xyes; then |
| 349 | VG_PLATFORM_PRI="PPC32_LINUX" |
| 350 | VG_PLATFORM_SEC="" |
| 351 | else |
| 352 | VG_PLATFORM_PRI="PPC64_LINUX" |
| 353 | VG_PLATFORM_SEC="PPC32_LINUX" |
| 354 | fi |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 355 | AC_MSG_RESULT([ok (${host_cpu}-${host_os})]) |
| 356 | ;; |
nethercote | 888ecb7 | 2004-08-23 14:54:40 +0000 | [diff] [blame] | 357 | *) |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 358 | VG_PLATFORM_PRI="unknown" |
| 359 | VG_PLATFORM_SEC="unknown" |
nethercote | 888ecb7 | 2004-08-23 14:54:40 +0000 | [diff] [blame] | 360 | AC_MSG_RESULT([no (${host_cpu}-${host_os})]) |
sewardj | 3e38ce0 | 2004-11-23 01:17:29 +0000 | [diff] [blame] | 361 | AC_MSG_ERROR([Valgrind is platform specific. Sorry. Please consider doing a port.]) |
nethercote | 888ecb7 | 2004-08-23 14:54:40 +0000 | [diff] [blame] | 362 | ;; |
| 363 | esac |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 364 | |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 365 | # Set up VGP_<platform>. Either one or two of these become defined. |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 366 | # |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 367 | AM_CONDITIONAL(VGP_X86_LINUX, |
sewardj | bc692db | 2006-01-04 03:31:07 +0000 | [diff] [blame] | 368 | test x$VG_PLATFORM_PRI = xX86_LINUX \ |
| 369 | -o x$VG_PLATFORM_SEC = xX86_LINUX) |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 370 | AM_CONDITIONAL(VGP_AMD64_LINUX, |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 371 | test x$VG_PLATFORM_PRI = xAMD64_LINUX) |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 372 | AM_CONDITIONAL(VGP_PPC32_LINUX, |
sewardj | bc692db | 2006-01-04 03:31:07 +0000 | [diff] [blame] | 373 | test x$VG_PLATFORM_PRI = xPPC32_LINUX \ |
| 374 | -o x$VG_PLATFORM_SEC = xPPC32_LINUX) |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 375 | AM_CONDITIONAL(VGP_PPC64_LINUX, |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 376 | test x$VG_PLATFORM_PRI = xPPC64_LINUX) |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 377 | AM_CONDITIONAL(VGP_PPC32_AIX5, |
| 378 | test x$VG_PLATFORM_PRI = xPPC32_AIX5 \ |
| 379 | -o x$VG_PLATFORM_SEC = xPPC32_AIX5) |
| 380 | AM_CONDITIONAL(VGP_PPC64_AIX5, |
| 381 | test x$VG_PLATFORM_PRI = xPPC64_AIX5) |
| 382 | |
| 383 | # Similarly, set up VGO_<os>. Exactly one of these becomes defined. |
| 384 | # Relies on the assumption that the primary and secondary targets are |
| 385 | # for the same OS, so therefore only necessary to test the primary. |
| 386 | # |
| 387 | AM_CONDITIONAL(VGO_LINUX, |
| 388 | test x$VG_PLATFORM_PRI = xX86_LINUX \ |
| 389 | -o x$VG_PLATFORM_PRI = xAMD64_LINUX \ |
| 390 | -o x$VG_PLATFORM_PRI = xPPC32_LINUX \ |
| 391 | -o x$VG_PLATFORM_PRI = xPPC64_LINUX) |
| 392 | AM_CONDITIONAL(VGO_AIX5, |
| 393 | test x$VG_PLATFORM_PRI = xPPC32_AIX5 \ |
| 394 | -o x$VG_PLATFORM_PRI = xPPC64_AIX5) |
| 395 | |
| 396 | |
| 397 | # Sometimes, in the Makefile.am-s, it's useful to know |
| 398 | # whether or not there is a secondary target. |
| 399 | # |
| 400 | AM_CONDITIONAL(VGP_HAVE_SECONDARY, |
| 401 | test x$VG_PLATFORM_SEC != x) |
tom | fb7bcde | 2005-11-07 15:24:38 +0000 | [diff] [blame] | 402 | |
tom | b637bad | 2005-11-08 12:28:35 +0000 | [diff] [blame] | 403 | |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 404 | # This variable will collect the individual suppression files |
| 405 | # depending on the results of autoconf |
| 406 | DEFAULT_SUPP="" |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 407 | AC_SUBST(DEFAULT_SUPP) |
| 408 | |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 409 | |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 410 | libc="" |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 411 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 412 | AC_EGREP_CPP([GLIBC_22], [ |
| 413 | #include <features.h> |
| 414 | #ifdef __GNU_LIBRARY__ |
| 415 | #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 2) |
| 416 | GLIBC_22 |
| 417 | #endif |
| 418 | #endif |
| 419 | ], |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 420 | libc="2.2") |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 421 | |
sewardj | 08c7f01 | 2002-10-07 23:56:55 +0000 | [diff] [blame] | 422 | AC_EGREP_CPP([GLIBC_23], [ |
| 423 | #include <features.h> |
| 424 | #ifdef __GNU_LIBRARY__ |
| 425 | #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 3) |
| 426 | GLIBC_23 |
| 427 | #endif |
| 428 | #endif |
| 429 | ], |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 430 | libc="2.3") |
sewardj | 08c7f01 | 2002-10-07 23:56:55 +0000 | [diff] [blame] | 431 | |
njn | 781dba5 | 2005-06-30 04:06:38 +0000 | [diff] [blame] | 432 | AC_EGREP_CPP([GLIBC_24], [ |
| 433 | #include <features.h> |
| 434 | #ifdef __GNU_LIBRARY__ |
| 435 | #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 4) |
| 436 | GLIBC_24 |
| 437 | #endif |
| 438 | #endif |
| 439 | ], |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 440 | libc="2.4") |
njn | 781dba5 | 2005-06-30 04:06:38 +0000 | [diff] [blame] | 441 | |
dirk | aece45c | 2006-10-12 08:17:49 +0000 | [diff] [blame] | 442 | AC_EGREP_CPP([GLIBC_25], [ |
| 443 | #include <features.h> |
| 444 | #ifdef __GNU_LIBRARY__ |
| 445 | #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 5) |
| 446 | GLIBC_25 |
| 447 | #endif |
| 448 | #endif |
| 449 | ], |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 450 | libc="2.5") |
dirk | aece45c | 2006-10-12 08:17:49 +0000 | [diff] [blame] | 451 | |
dirk | c8bd0c5 | 2007-05-23 17:39:08 +0000 | [diff] [blame] | 452 | AC_EGREP_CPP([GLIBC_26], [ |
| 453 | #include <features.h> |
| 454 | #ifdef __GNU_LIBRARY__ |
| 455 | #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 6) |
| 456 | GLIBC_26 |
| 457 | #endif |
| 458 | #endif |
| 459 | ], |
| 460 | libc="2.6") |
| 461 | |
sewardj | 68c80c1 | 2007-11-18 14:40:02 +0000 | [diff] [blame] | 462 | AC_EGREP_CPP([GLIBC_27], [ |
| 463 | #include <features.h> |
| 464 | #ifdef __GNU_LIBRARY__ |
| 465 | #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 7) |
| 466 | GLIBC_27 |
| 467 | #endif |
| 468 | #endif |
| 469 | ], |
| 470 | libc="2.7") |
| 471 | |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 472 | AC_EGREP_CPP([AIX5_LIBC], [ |
| 473 | #include <standards.h> |
| 474 | #if defined(_AIXVERSION_510) || defined(_AIXVERSION_520) || defined(_AIXVERSION_530) |
| 475 | AIX5_LIBC |
| 476 | #endif |
| 477 | ], |
| 478 | libc="aix5") |
daywalker | e9212b3 | 2003-06-15 22:39:15 +0000 | [diff] [blame] | 479 | |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 480 | AC_MSG_CHECKING([the libc version]) |
| 481 | |
| 482 | case "${libc}" in |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 483 | 2.2) |
| 484 | AC_MSG_RESULT(2.2 family) |
daywalker | 418c748 | 2002-10-16 13:09:26 +0000 | [diff] [blame] | 485 | AC_DEFINE([GLIBC_2_2], 1, [Define to 1 if you're using glibc 2.2.x]) |
sewardj | 2c4f3dd | 2007-11-11 06:13:01 +0000 | [diff] [blame] | 486 | DEFAULT_SUPP="glibc-2.2.supp ${DEFAULT_SUPP}" |
| 487 | DEFAULT_SUPP="glibc-2.2-LinuxThreads-helgrind.supp ${DEFAULT_SUPP}" |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 488 | ;; |
| 489 | |
sewardj | 08c7f01 | 2002-10-07 23:56:55 +0000 | [diff] [blame] | 490 | 2.3) |
| 491 | AC_MSG_RESULT(2.3 family) |
daywalker | 418c748 | 2002-10-16 13:09:26 +0000 | [diff] [blame] | 492 | AC_DEFINE([GLIBC_2_3], 1, [Define to 1 if you're using glibc 2.3.x]) |
sewardj | 2c4f3dd | 2007-11-11 06:13:01 +0000 | [diff] [blame] | 493 | DEFAULT_SUPP="glibc-2.3.supp ${DEFAULT_SUPP}" |
sewardj | 68c80c1 | 2007-11-18 14:40:02 +0000 | [diff] [blame] | 494 | DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}" |
sewardj | 08c7f01 | 2002-10-07 23:56:55 +0000 | [diff] [blame] | 495 | ;; |
| 496 | |
njn | 781dba5 | 2005-06-30 04:06:38 +0000 | [diff] [blame] | 497 | 2.4) |
| 498 | AC_MSG_RESULT(2.4 family) |
| 499 | AC_DEFINE([GLIBC_2_4], 1, [Define to 1 if you're using glibc 2.4.x]) |
sewardj | 2c4f3dd | 2007-11-11 06:13:01 +0000 | [diff] [blame] | 500 | DEFAULT_SUPP="glibc-2.4.supp ${DEFAULT_SUPP}" |
sewardj | 68c80c1 | 2007-11-18 14:40:02 +0000 | [diff] [blame] | 501 | DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}" |
njn | 781dba5 | 2005-06-30 04:06:38 +0000 | [diff] [blame] | 502 | ;; |
| 503 | |
dirk | aece45c | 2006-10-12 08:17:49 +0000 | [diff] [blame] | 504 | 2.5) |
| 505 | AC_MSG_RESULT(2.5 family) |
| 506 | AC_DEFINE([GLIBC_2_5], 1, [Define to 1 if you're using glibc 2.5.x]) |
sewardj | 2c4f3dd | 2007-11-11 06:13:01 +0000 | [diff] [blame] | 507 | DEFAULT_SUPP="glibc-2.5.supp ${DEFAULT_SUPP}" |
sewardj | 68c80c1 | 2007-11-18 14:40:02 +0000 | [diff] [blame] | 508 | DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}" |
dirk | aece45c | 2006-10-12 08:17:49 +0000 | [diff] [blame] | 509 | ;; |
dirk | c8bd0c5 | 2007-05-23 17:39:08 +0000 | [diff] [blame] | 510 | 2.6) |
| 511 | AC_MSG_RESULT(2.6 family) |
| 512 | AC_DEFINE([GLIBC_2_6], 1, [Define to 1 if you're using glibc 2.6.x]) |
sewardj | 2c4f3dd | 2007-11-11 06:13:01 +0000 | [diff] [blame] | 513 | DEFAULT_SUPP="glibc-2.6.supp ${DEFAULT_SUPP}" |
sewardj | 68c80c1 | 2007-11-18 14:40:02 +0000 | [diff] [blame] | 514 | DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}" |
| 515 | ;; |
| 516 | 2.7) |
| 517 | AC_MSG_RESULT(2.7 family) |
| 518 | AC_DEFINE([GLIBC_2_7], 1, [Define to 1 if you're using glibc 2.7.x]) |
| 519 | DEFAULT_SUPP="glibc-2.7.supp ${DEFAULT_SUPP}" |
| 520 | DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}" |
dirk | c8bd0c5 | 2007-05-23 17:39:08 +0000 | [diff] [blame] | 521 | ;; |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 522 | aix5) |
sewardj | 2f3bcd2 | 2006-12-12 01:38:15 +0000 | [diff] [blame] | 523 | AC_MSG_RESULT(AIX 5.1 or 5.2 or 5.3) |
| 524 | AC_DEFINE([AIX5_LIBC], 1, [Define to 1 if you're using AIX 5.1 or 5.2 or 5.3]) |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 525 | DEFAULT_SUPP="aix5libc.supp ${DEFAULT_SUPP}" |
| 526 | ;; |
dirk | aece45c | 2006-10-12 08:17:49 +0000 | [diff] [blame] | 527 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 528 | *) |
| 529 | AC_MSG_RESULT(unsupported version) |
sewardj | 68c80c1 | 2007-11-18 14:40:02 +0000 | [diff] [blame] | 530 | AC_MSG_ERROR([Valgrind requires glibc version 2.2 - 2.7]) |
sewardj | 2f3bcd2 | 2006-12-12 01:38:15 +0000 | [diff] [blame] | 531 | AC_MSG_ERROR([or AIX 5.1 or 5.2 or 5.3 libc]) |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 532 | ;; |
| 533 | esac |
| 534 | |
sewardj | 535c50f | 2005-06-04 23:14:53 +0000 | [diff] [blame] | 535 | |
nethercote | 3d260f6 | 2004-10-31 19:39:18 +0000 | [diff] [blame] | 536 | # We don't know how to detect the X client library version |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 537 | # (detecting the server version is easy, but no help). So we |
nethercote | 3d260f6 | 2004-10-31 19:39:18 +0000 | [diff] [blame] | 538 | # just use a hack: always include the suppressions for both |
| 539 | # versions 3 and 4. |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 540 | AC_PATH_X |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 541 | if test "${no_x}" != 'yes' ; then |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 542 | DEFAULT_SUPP="xfree-4.supp ${DEFAULT_SUPP}" |
| 543 | DEFAULT_SUPP="xfree-3.supp ${DEFAULT_SUPP}" |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 544 | fi |
| 545 | |
sewardj | 2e10a68 | 2003-04-07 19:36:41 +0000 | [diff] [blame] | 546 | |
sewardj | 535c50f | 2005-06-04 23:14:53 +0000 | [diff] [blame] | 547 | # does this compiler support -m32 ? |
| 548 | AC_MSG_CHECKING([if gcc accepts -m32]) |
| 549 | |
| 550 | safe_CFLAGS=$CFLAGS |
| 551 | CFLAGS="-m32" |
| 552 | |
| 553 | AC_TRY_COMPILE(, [ |
| 554 | int main () { return 0 ; } |
| 555 | ], |
| 556 | [ |
| 557 | FLAG_M32="-m32" |
| 558 | AC_MSG_RESULT([yes]) |
| 559 | ], [ |
| 560 | FLAG_M32="" |
| 561 | AC_MSG_RESULT([no]) |
| 562 | ]) |
| 563 | CFLAGS=$safe_CFLAGS |
| 564 | |
| 565 | AC_SUBST(FLAG_M32) |
| 566 | |
| 567 | |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 568 | # does this compiler support -maix32 ? |
| 569 | AC_MSG_CHECKING([if gcc accepts -maix32]) |
| 570 | |
| 571 | safe_CFLAGS=$CFLAGS |
| 572 | CFLAGS="-maix32" |
| 573 | |
| 574 | AC_TRY_COMPILE(, [ |
| 575 | int main () { return 0 ; } |
| 576 | ], |
| 577 | [ |
| 578 | FLAG_MAIX32="-maix32" |
| 579 | AC_MSG_RESULT([yes]) |
| 580 | ], [ |
| 581 | FLAG_MAIX32="" |
| 582 | AC_MSG_RESULT([no]) |
| 583 | ]) |
| 584 | CFLAGS=$safe_CFLAGS |
| 585 | |
| 586 | AC_SUBST(FLAG_MAIX32) |
| 587 | |
| 588 | |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 589 | # does this compiler support -m64 ? |
| 590 | AC_MSG_CHECKING([if gcc accepts -m64]) |
| 591 | |
| 592 | safe_CFLAGS=$CFLAGS |
| 593 | CFLAGS="-m64" |
| 594 | |
| 595 | AC_TRY_COMPILE(, [ |
| 596 | int main () { return 0 ; } |
| 597 | ], |
| 598 | [ |
| 599 | FLAG_M64="-m64" |
| 600 | AC_MSG_RESULT([yes]) |
| 601 | ], [ |
| 602 | FLAG_M64="" |
| 603 | AC_MSG_RESULT([no]) |
| 604 | ]) |
| 605 | CFLAGS=$safe_CFLAGS |
| 606 | |
| 607 | AC_SUBST(FLAG_M64) |
| 608 | |
| 609 | |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 610 | # does this compiler support -maix64 ? |
| 611 | AC_MSG_CHECKING([if gcc accepts -maix64]) |
| 612 | |
| 613 | safe_CFLAGS=$CFLAGS |
| 614 | CFLAGS="-maix64" |
| 615 | |
| 616 | AC_TRY_COMPILE(, [ |
| 617 | int main () { return 0 ; } |
| 618 | ], |
| 619 | [ |
| 620 | FLAG_MAIX64="-maix64" |
| 621 | AC_MSG_RESULT([yes]) |
| 622 | ], [ |
| 623 | FLAG_MAIX64="" |
| 624 | AC_MSG_RESULT([no]) |
| 625 | ]) |
| 626 | CFLAGS=$safe_CFLAGS |
| 627 | |
| 628 | AC_SUBST(FLAG_MAIX64) |
| 629 | |
| 630 | |
sewardj | 67f1fcc | 2005-07-03 10:41:02 +0000 | [diff] [blame] | 631 | # does this compiler support -mmmx ? |
| 632 | AC_MSG_CHECKING([if gcc accepts -mmmx]) |
| 633 | |
| 634 | safe_CFLAGS=$CFLAGS |
| 635 | CFLAGS="-mmmx" |
| 636 | |
| 637 | AC_TRY_COMPILE(, [ |
| 638 | int main () { return 0 ; } |
| 639 | ], |
| 640 | [ |
| 641 | FLAG_MMMX="-mmmx" |
| 642 | AC_MSG_RESULT([yes]) |
| 643 | ], [ |
| 644 | FLAG_MMMX="" |
| 645 | AC_MSG_RESULT([no]) |
| 646 | ]) |
| 647 | CFLAGS=$safe_CFLAGS |
| 648 | |
| 649 | AC_SUBST(FLAG_MMMX) |
| 650 | |
| 651 | |
| 652 | # does this compiler support -msse ? |
| 653 | AC_MSG_CHECKING([if gcc accepts -msse]) |
| 654 | |
| 655 | safe_CFLAGS=$CFLAGS |
| 656 | CFLAGS="-msse" |
| 657 | |
| 658 | AC_TRY_COMPILE(, [ |
| 659 | int main () { return 0 ; } |
| 660 | ], |
| 661 | [ |
| 662 | FLAG_MSSE="-msse" |
| 663 | AC_MSG_RESULT([yes]) |
| 664 | ], [ |
| 665 | FLAG_MSSE="" |
| 666 | AC_MSG_RESULT([no]) |
| 667 | ]) |
| 668 | CFLAGS=$safe_CFLAGS |
| 669 | |
| 670 | AC_SUBST(FLAG_MSSE) |
| 671 | |
| 672 | |
sewardj | 5b754b4 | 2002-06-03 22:53:35 +0000 | [diff] [blame] | 673 | # does this compiler support -mpreferred-stack-boundary=2 ? |
| 674 | AC_MSG_CHECKING([if gcc accepts -mpreferred-stack-boundary]) |
| 675 | |
daywalker | 3664f56 | 2003-10-17 13:43:46 +0000 | [diff] [blame] | 676 | safe_CFLAGS=$CFLAGS |
sewardj | 5b754b4 | 2002-06-03 22:53:35 +0000 | [diff] [blame] | 677 | CFLAGS="-mpreferred-stack-boundary=2" |
| 678 | |
| 679 | AC_TRY_COMPILE(, [ |
sewardj | 5b754b4 | 2002-06-03 22:53:35 +0000 | [diff] [blame] | 680 | int main () { return 0 ; } |
sewardj | 5b754b4 | 2002-06-03 22:53:35 +0000 | [diff] [blame] | 681 | ], |
| 682 | [ |
| 683 | PREFERRED_STACK_BOUNDARY="-mpreferred-stack-boundary=2" |
daywalker | 3664f56 | 2003-10-17 13:43:46 +0000 | [diff] [blame] | 684 | AC_MSG_RESULT([yes]) |
sewardj | 5b754b4 | 2002-06-03 22:53:35 +0000 | [diff] [blame] | 685 | ], [ |
| 686 | PREFERRED_STACK_BOUNDARY="" |
| 687 | AC_MSG_RESULT([no]) |
| 688 | ]) |
daywalker | 3664f56 | 2003-10-17 13:43:46 +0000 | [diff] [blame] | 689 | CFLAGS=$safe_CFLAGS |
sewardj | 5b754b4 | 2002-06-03 22:53:35 +0000 | [diff] [blame] | 690 | |
| 691 | AC_SUBST(PREFERRED_STACK_BOUNDARY) |
| 692 | |
sewardj | 535c50f | 2005-06-04 23:14:53 +0000 | [diff] [blame] | 693 | |
sewardj | b5f6f51 | 2005-03-10 23:59:00 +0000 | [diff] [blame] | 694 | # does this compiler support -Wno-pointer-sign ? |
| 695 | AC_MSG_CHECKING([if gcc accepts -Wno-pointer-sign ]) |
| 696 | |
| 697 | safe_CFLAGS=$CFLAGS |
| 698 | CFLAGS="-Wno-pointer-sign" |
| 699 | |
| 700 | AC_TRY_COMPILE(, [ |
| 701 | int main () { return 0 ; } |
| 702 | ], |
| 703 | [ |
| 704 | no_pointer_sign=yes |
| 705 | AC_MSG_RESULT([yes]) |
| 706 | ], [ |
| 707 | no_pointer_sign=no |
| 708 | AC_MSG_RESULT([no]) |
| 709 | ]) |
| 710 | CFLAGS=$safe_CFLAGS |
| 711 | |
| 712 | if test x$no_pointer_sign = xyes; then |
| 713 | CFLAGS="$CFLAGS -Wno-pointer-sign" |
| 714 | fi |
| 715 | |
sewardj | 535c50f | 2005-06-04 23:14:53 +0000 | [diff] [blame] | 716 | |
tom | 1e94668 | 2005-10-12 11:27:33 +0000 | [diff] [blame] | 717 | # does this compiler support -Wdeclaration-after-statement ? |
| 718 | AC_MSG_CHECKING([if gcc accepts -Wdeclaration-after-statement ]) |
| 719 | |
| 720 | safe_CFLAGS=$CFLAGS |
| 721 | CFLAGS="-Wdeclaration-after-statement" |
| 722 | |
| 723 | AC_TRY_COMPILE(, [ |
| 724 | int main () { return 0 ; } |
| 725 | ], |
| 726 | [ |
tom | e9814c3 | 2005-10-12 11:30:43 +0000 | [diff] [blame] | 727 | declaration_after_statement=yes |
sewardj | 72a547e | 2006-01-25 02:58:28 +0000 | [diff] [blame] | 728 | FLAG_WDECL_AFTER_STMT="-Wdeclaration-after-statement" |
tom | 1e94668 | 2005-10-12 11:27:33 +0000 | [diff] [blame] | 729 | AC_MSG_RESULT([yes]) |
| 730 | ], [ |
tom | e9814c3 | 2005-10-12 11:30:43 +0000 | [diff] [blame] | 731 | declaration_after_statement=no |
sewardj | 72a547e | 2006-01-25 02:58:28 +0000 | [diff] [blame] | 732 | FLAG_WDECL_AFTER_STMT="" |
tom | 1e94668 | 2005-10-12 11:27:33 +0000 | [diff] [blame] | 733 | AC_MSG_RESULT([no]) |
| 734 | ]) |
| 735 | CFLAGS=$safe_CFLAGS |
| 736 | |
sewardj | 72a547e | 2006-01-25 02:58:28 +0000 | [diff] [blame] | 737 | AC_SUBST(FLAG_WDECL_AFTER_STMT) |
| 738 | |
tom | e9814c3 | 2005-10-12 11:30:43 +0000 | [diff] [blame] | 739 | if test x$declaration_after_statement = xyes; then |
tom | 1e94668 | 2005-10-12 11:27:33 +0000 | [diff] [blame] | 740 | CFLAGS="$CFLAGS -Wdeclaration-after-statement" |
| 741 | fi |
| 742 | |
sewardj | 00f1e62 | 2006-03-12 16:47:10 +0000 | [diff] [blame] | 743 | |
sewardj | a72c26d | 2007-05-01 13:44:08 +0000 | [diff] [blame] | 744 | # does this compiler support -fno-stack-protector ? |
| 745 | AC_MSG_CHECKING([if gcc accepts -fno-stack-protector ]) |
| 746 | |
| 747 | safe_CFLAGS=$CFLAGS |
| 748 | CFLAGS="-fno-stack-protector" |
| 749 | |
| 750 | AC_TRY_COMPILE(, [ |
| 751 | int main () { return 0 ; } |
| 752 | ], |
| 753 | [ |
| 754 | no_stack_protector=yes |
| 755 | FLAG_FNO_STACK_PROTECTOR="-fno-stack-protector" |
| 756 | AC_MSG_RESULT([yes]) |
| 757 | ], [ |
| 758 | no_stack_protector=no |
| 759 | FLAG_FNO_STACK_PROTECTOR="" |
| 760 | AC_MSG_RESULT([no]) |
| 761 | ]) |
| 762 | CFLAGS=$safe_CFLAGS |
| 763 | |
| 764 | AC_SUBST(FLAG_FNO_STACK_PROTECTOR) |
| 765 | |
| 766 | if test x$no_stack_protector = xyes; then |
| 767 | CFLAGS="$CFLAGS -fno-stack-protector" |
| 768 | fi |
| 769 | |
| 770 | |
tom | d55121e | 2005-12-19 12:40:13 +0000 | [diff] [blame] | 771 | # does this compiler support __builtin_expect? |
| 772 | AC_MSG_CHECKING([if gcc supports __builtin_expect]) |
| 773 | |
| 774 | AC_TRY_LINK(, [ |
| 775 | return __builtin_expect(1, 1) ? 1 : 0 |
| 776 | ], |
| 777 | [ |
| 778 | ac_have_builtin_expect=yes |
| 779 | AC_MSG_RESULT([yes]) |
| 780 | ], [ |
| 781 | ac_have_builtin_expect=no |
| 782 | AC_MSG_RESULT([no]) |
| 783 | ]) |
| 784 | if test x$ac_have_builtin_expect = xyes ; then |
| 785 | AC_DEFINE(HAVE_BUILTIN_EXPECT, 1, [Define to 1 if gcc supports __builtin_expect.]) |
| 786 | fi |
| 787 | |
tom | 1e94668 | 2005-10-12 11:27:33 +0000 | [diff] [blame] | 788 | |
sewardj | 00f1e62 | 2006-03-12 16:47:10 +0000 | [diff] [blame] | 789 | # does the ppc assembler support "mtocrf" et al? |
| 790 | AC_MSG_CHECKING([if ppc32/64 as supports mtocrf/mfocrf]) |
| 791 | |
| 792 | AC_TRY_COMPILE(, [ |
sewardj | dd4cbe1 | 2006-03-12 17:27:44 +0000 | [diff] [blame] | 793 | __asm__ __volatile__("mtocrf 4,0"); |
| 794 | __asm__ __volatile__("mfocrf 0,4"); |
sewardj | 00f1e62 | 2006-03-12 16:47:10 +0000 | [diff] [blame] | 795 | ], |
| 796 | [ |
| 797 | ac_have_as_ppc_mftocrf=yes |
| 798 | AC_MSG_RESULT([yes]) |
| 799 | ], [ |
| 800 | ac_have_as_ppc_mftocrf=no |
| 801 | AC_MSG_RESULT([no]) |
| 802 | ]) |
| 803 | if test x$ac_have_as_ppc_mftocrf = xyes ; then |
| 804 | AC_DEFINE(HAVE_AS_PPC_MFTOCRF, 1, [Define to 1 if as supports mtocrf/mfocrf.]) |
| 805 | fi |
| 806 | |
| 807 | |
sewardj | f0aabf8 | 2007-03-22 00:24:21 +0000 | [diff] [blame] | 808 | # does the x86/amd64 assembler understand SSE3 instructions? |
sewardj | fa18a26 | 2007-03-22 12:13:13 +0000 | [diff] [blame] | 809 | # Note, this doesn't generate a C-level symbol. It generates a |
| 810 | # automake-level symbol (BUILD_SSE3_TESTS), used in test Makefile.am's |
sewardj | f0aabf8 | 2007-03-22 00:24:21 +0000 | [diff] [blame] | 811 | AC_MSG_CHECKING([if x86/amd64 assembler speaks SSE3]) |
| 812 | |
| 813 | AC_TRY_COMPILE(, [ |
| 814 | do { long long int x; |
| 815 | __asm__ __volatile__("fisttpq (%0)" : :"r"(&x) ); } |
| 816 | while (0) |
| 817 | ], |
| 818 | [ |
| 819 | ac_have_as_sse3=yes |
| 820 | AC_MSG_RESULT([yes]) |
| 821 | ], [ |
| 822 | ac_have_as_sse3=no |
| 823 | AC_MSG_RESULT([no]) |
| 824 | ]) |
sewardj | fa18a26 | 2007-03-22 12:13:13 +0000 | [diff] [blame] | 825 | |
| 826 | AM_CONDITIONAL(BUILD_SSE3_TESTS, test x$ac_have_as_sse3 = xyes) |
sewardj | f0aabf8 | 2007-03-22 00:24:21 +0000 | [diff] [blame] | 827 | |
| 828 | |
sewardj | b5f6f51 | 2005-03-10 23:59:00 +0000 | [diff] [blame] | 829 | # Check for TLS support in the compiler and linker |
| 830 | AC_CACHE_CHECK([for TLS support], vg_cv_tls, |
| 831 | [AC_ARG_ENABLE(tls, [ --enable-tls platform supports TLS], |
| 832 | [vg_cv_tls=$enableval], |
| 833 | [AC_RUN_IFELSE([AC_LANG_PROGRAM([[static __thread int foo;]], |
| 834 | [[return foo;]])], |
| 835 | [vg_cv_tls=yes], |
| 836 | [vg_cv_tls=no])])]) |
| 837 | |
| 838 | if test "$vg_cv_tls" = yes; then |
| 839 | AC_DEFINE([HAVE_TLS], 1, [can use __thread to define thread-local variables]) |
| 840 | fi |
sewardj | 5b754b4 | 2002-06-03 22:53:35 +0000 | [diff] [blame] | 841 | |
sewardj | 535c50f | 2005-06-04 23:14:53 +0000 | [diff] [blame] | 842 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 843 | # Checks for header files. |
| 844 | AC_HEADER_STDC |
nethercote | 3d260f6 | 2004-10-31 19:39:18 +0000 | [diff] [blame] | 845 | AC_CHECK_HEADERS([sys/endian.h endian.h mqueue.h]) |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 846 | |
sewardj | 535c50f | 2005-06-04 23:14:53 +0000 | [diff] [blame] | 847 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 848 | # Checks for typedefs, structures, and compiler characteristics. |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 849 | AC_TYPE_UID_T |
| 850 | AC_TYPE_OFF_T |
| 851 | AC_TYPE_SIZE_T |
| 852 | AC_HEADER_TIME |
| 853 | |
sewardj | 535c50f | 2005-06-04 23:14:53 +0000 | [diff] [blame] | 854 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 855 | # Checks for library functions. |
| 856 | AC_FUNC_MEMCMP |
| 857 | AC_FUNC_MMAP |
| 858 | AC_TYPE_SIGNAL |
| 859 | |
thughes | beb6eb9 | 2004-06-14 12:33:43 +0000 | [diff] [blame] | 860 | AC_CHECK_FUNCS([floor memchr memset mkdir strchr strdup strpbrk strrchr strstr semtimedop]) |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 861 | |
sewardj | 8063775 | 2006-03-02 13:48:21 +0000 | [diff] [blame] | 862 | |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 863 | # Do we have a useable MPI setup on the primary and/or secondary targets? |
| 864 | # On Linux, by default, assumes mpicc and -m32/-m64 |
| 865 | # On AIX, by default, assumes mpxlc and -q32/-q64 |
sewardj | e9fa506 | 2006-03-12 18:29:18 +0000 | [diff] [blame] | 866 | # Note: this is a kludge in that it assumes the specified mpicc |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 867 | # understands -m32/-m64/-q32/-q64 regardless of what is specified using |
| 868 | # --with-mpicc=. |
sewardj | 0ad4609 | 2006-03-02 17:09:16 +0000 | [diff] [blame] | 869 | MPI_CC="mpicc" |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 870 | if test x$VG_PLATFORM_PRI = xPPC32_AIX5 \ |
| 871 | -o x$VG_PLATFORM_PRI = xPPC64_AIX5 ; then |
| 872 | MPI_CC="mpxlc" |
| 873 | fi |
| 874 | |
sewardj | e9fa506 | 2006-03-12 18:29:18 +0000 | [diff] [blame] | 875 | mflag_primary= |
| 876 | if test x$VG_PLATFORM_PRI = xX86_LINUX \ |
| 877 | -o x$VG_PLATFORM_PRI = xPPC32_LINUX ; then |
| 878 | mflag_primary=$FLAG_M32 |
| 879 | elif test x$VG_PLATFORM_PRI = xAMD64_LINUX \ |
| 880 | -o x$VG_PLATFORM_PRI = xPPC64_LINUX ; then |
| 881 | mflag_primary=$FLAG_M64 |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 882 | elif test x$VG_PLATFORM_PRI = xPPC32_AIX5 ; then |
| 883 | mflag_primary=-q32 |
| 884 | elif test x$VG_PLATFORM_PRI = xPPC64_AIX5 ; then |
| 885 | mflag_primary=-q64 |
sewardj | e9fa506 | 2006-03-12 18:29:18 +0000 | [diff] [blame] | 886 | fi |
| 887 | |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 888 | mflag_secondary= |
| 889 | if test x$VG_PLATFORM_SEC = xX86_LINUX \ |
| 890 | -o x$VG_PLATFORM_SEC = xPPC32_LINUX ; then |
| 891 | mflag_secondary=$FLAG_M32 |
| 892 | elif test x$VG_PLATFORM_SEC = xPPC32_AIX5 ; then |
| 893 | mflag_secondary=-q32 |
| 894 | fi |
| 895 | |
| 896 | |
sewardj | 0ad4609 | 2006-03-02 17:09:16 +0000 | [diff] [blame] | 897 | AC_ARG_WITH(mpicc, |
sewardj | b70a613 | 2006-05-27 21:14:09 +0000 | [diff] [blame] | 898 | [ --with-mpicc= Specify name of MPI2-ised C compiler], |
sewardj | 0ad4609 | 2006-03-02 17:09:16 +0000 | [diff] [blame] | 899 | MPI_CC=$withval |
| 900 | ) |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 901 | AC_SUBST(MPI_CC) |
| 902 | |
| 903 | ## See if MPI_CC works for the primary target |
| 904 | ## |
| 905 | AC_MSG_CHECKING([primary target for usable MPI2-compliant C compiler and mpi.h]) |
sewardj | 0ad4609 | 2006-03-02 17:09:16 +0000 | [diff] [blame] | 906 | saved_CC=$CC |
sewardj | de4f384 | 2006-03-09 02:41:41 +0000 | [diff] [blame] | 907 | saved_CFLAGS=$CFLAGS |
sewardj | 0ad4609 | 2006-03-02 17:09:16 +0000 | [diff] [blame] | 908 | CC=$MPI_CC |
sewardj | e9fa506 | 2006-03-12 18:29:18 +0000 | [diff] [blame] | 909 | CFLAGS=$mflag_primary |
sewardj | d3fcc64 | 2006-03-09 02:49:56 +0000 | [diff] [blame] | 910 | AC_TRY_LINK([ |
sewardj | 1a85e60 | 2006-03-08 15:26:10 +0000 | [diff] [blame] | 911 | #include <mpi.h> |
| 912 | #include <stdio.h> |
sewardj | de4f384 | 2006-03-09 02:41:41 +0000 | [diff] [blame] | 913 | ],[ |
| 914 | int r = MPI_Init(NULL,NULL); |
| 915 | r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL ); |
| 916 | return r; |
| 917 | ], [ |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 918 | ac_have_mpi2_pri=yes |
sewardj | 1a85e60 | 2006-03-08 15:26:10 +0000 | [diff] [blame] | 919 | AC_MSG_RESULT([yes, $MPI_CC]) |
sewardj | 8063775 | 2006-03-02 13:48:21 +0000 | [diff] [blame] | 920 | ], [ |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 921 | ac_have_mpi2_pri=no |
sewardj | 8063775 | 2006-03-02 13:48:21 +0000 | [diff] [blame] | 922 | AC_MSG_RESULT([no]) |
| 923 | ]) |
sewardj | 0ad4609 | 2006-03-02 17:09:16 +0000 | [diff] [blame] | 924 | CC=$saved_CC |
sewardj | de4f384 | 2006-03-09 02:41:41 +0000 | [diff] [blame] | 925 | CFLAGS=$saved_CFLAGS |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 926 | AM_CONDITIONAL(BUILD_MPIWRAP_PRI, test x$ac_have_mpi2_pri = xyes) |
sewardj | 8063775 | 2006-03-02 13:48:21 +0000 | [diff] [blame] | 927 | |
sewardj | 03d86f2 | 2006-10-17 00:57:24 +0000 | [diff] [blame] | 928 | ## See if MPI_CC works for the secondary target. Complication: what if |
| 929 | ## there is no secondary target? We need this to then fail. |
| 930 | ## Kludge this by making MPI_CC something which will surely fail in |
| 931 | ## such a case. |
| 932 | ## |
| 933 | AC_MSG_CHECKING([secondary target for usable MPI2-compliant C compiler and mpi.h]) |
| 934 | saved_CC=$CC |
| 935 | saved_CFLAGS=$CFLAGS |
| 936 | if test x$VG_PLATFORM_SEC = x ; then |
| 937 | CC="$MPI_CC this will surely fail" |
| 938 | else |
| 939 | CC=$MPI_CC |
| 940 | fi |
| 941 | CFLAGS=$mflag_secondary |
| 942 | AC_TRY_LINK([ |
| 943 | #include <mpi.h> |
| 944 | #include <stdio.h> |
| 945 | ],[ |
| 946 | int r = MPI_Init(NULL,NULL); |
| 947 | r |= MPI_Type_get_contents( MPI_INT, 0,0,0, NULL,NULL,NULL ); |
| 948 | return r; |
| 949 | ], [ |
| 950 | ac_have_mpi2_sec=yes |
| 951 | AC_MSG_RESULT([yes, $MPI_CC]) |
| 952 | ], [ |
| 953 | ac_have_mpi2_sec=no |
| 954 | AC_MSG_RESULT([no]) |
| 955 | ]) |
| 956 | CC=$saved_CC |
| 957 | CFLAGS=$saved_CFLAGS |
| 958 | AM_CONDITIONAL(BUILD_MPIWRAP_SEC, test x$ac_have_mpi2_sec = xyes) |
sewardj | 8063775 | 2006-03-02 13:48:21 +0000 | [diff] [blame] | 959 | |
| 960 | |
| 961 | # -------------------- ok. We're done. -------------------- |
| 962 | |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 963 | AC_OUTPUT( |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 964 | Makefile |
njn25 | cac76cb | 2002-09-23 11:21:57 +0000 | [diff] [blame] | 965 | valgrind.spec |
mueller | bddd607 | 2003-11-19 21:50:07 +0000 | [diff] [blame] | 966 | valgrind.pc |
njn25 | 4d54243 | 2002-09-23 16:09:39 +0000 | [diff] [blame] | 967 | docs/Makefile |
njn | 3e986b2 | 2004-11-30 10:43:45 +0000 | [diff] [blame] | 968 | docs/lib/Makefile |
| 969 | docs/images/Makefile |
njn | f7c00b1 | 2005-07-19 21:46:19 +0000 | [diff] [blame] | 970 | docs/internals/Makefile |
njn | 3e986b2 | 2004-11-30 10:43:45 +0000 | [diff] [blame] | 971 | docs/xml/Makefile |
njn25 | 4d54243 | 2002-09-23 16:09:39 +0000 | [diff] [blame] | 972 | tests/Makefile |
njn | c2e7f48 | 2002-09-27 08:44:17 +0000 | [diff] [blame] | 973 | tests/vg_regtest |
njn | ec0c27a | 2005-12-10 23:11:28 +0000 | [diff] [blame] | 974 | perf/Makefile |
| 975 | perf/vg_perf |
njn25 | 4d54243 | 2002-09-23 16:09:39 +0000 | [diff] [blame] | 976 | include/Makefile |
sewardj | 0f8881b | 2006-10-18 01:16:57 +0000 | [diff] [blame] | 977 | include/vki/Makefile |
njn | 7a6e746 | 2002-11-09 17:53:30 +0000 | [diff] [blame] | 978 | auxprogs/Makefile |
njn25 | ab72603 | 2002-09-23 16:24:41 +0000 | [diff] [blame] | 979 | coregrind/Makefile |
njn25 | cac76cb | 2002-09-23 11:21:57 +0000 | [diff] [blame] | 980 | memcheck/Makefile |
| 981 | memcheck/tests/Makefile |
njn | c616819 | 2004-11-29 13:54:10 +0000 | [diff] [blame] | 982 | memcheck/tests/amd64/Makefile |
cerion | 85665ca | 2005-06-20 15:51:07 +0000 | [diff] [blame] | 983 | memcheck/tests/ppc32/Makefile |
sewardj | 2c48c7b | 2005-11-29 13:05:56 +0000 | [diff] [blame] | 984 | memcheck/tests/ppc64/Makefile |
njn | c616819 | 2004-11-29 13:54:10 +0000 | [diff] [blame] | 985 | memcheck/tests/x86/Makefile |
njn25 | cac76cb | 2002-09-23 11:21:57 +0000 | [diff] [blame] | 986 | memcheck/docs/Makefile |
| 987 | cachegrind/Makefile |
njn25 | cac76cb | 2002-09-23 11:21:57 +0000 | [diff] [blame] | 988 | cachegrind/tests/Makefile |
njn | c616819 | 2004-11-29 13:54:10 +0000 | [diff] [blame] | 989 | cachegrind/tests/amd64/Makefile |
cerion | 85665ca | 2005-06-20 15:51:07 +0000 | [diff] [blame] | 990 | cachegrind/tests/ppc32/Makefile |
sewardj | 2c48c7b | 2005-11-29 13:05:56 +0000 | [diff] [blame] | 991 | cachegrind/tests/ppc64/Makefile |
njn | c616819 | 2004-11-29 13:54:10 +0000 | [diff] [blame] | 992 | cachegrind/tests/x86/Makefile |
njn25 | cac76cb | 2002-09-23 11:21:57 +0000 | [diff] [blame] | 993 | cachegrind/docs/Makefile |
njn | f2df9b5 | 2002-10-04 11:35:47 +0000 | [diff] [blame] | 994 | cachegrind/cg_annotate |
weidendo | a17f2a3 | 2006-03-20 10:27:30 +0000 | [diff] [blame] | 995 | callgrind/Makefile |
| 996 | callgrind/callgrind_annotate |
| 997 | callgrind/callgrind_control |
| 998 | callgrind/tests/Makefile |
| 999 | callgrind/docs/Makefile |
njn25 | cac76cb | 2002-09-23 11:21:57 +0000 | [diff] [blame] | 1000 | helgrind/Makefile |
njn | f2df9b5 | 2002-10-04 11:35:47 +0000 | [diff] [blame] | 1001 | helgrind/tests/Makefile |
njn | 83157fc | 2002-10-03 10:07:34 +0000 | [diff] [blame] | 1002 | helgrind/docs/Makefile |
nethercote | c9f3692 | 2004-02-14 16:40:02 +0000 | [diff] [blame] | 1003 | massif/Makefile |
nethercote | c9f3692 | 2004-02-14 16:40:02 +0000 | [diff] [blame] | 1004 | massif/tests/Makefile |
njn | 734b805 | 2007-11-01 04:40:37 +0000 | [diff] [blame] | 1005 | massif/perf/Makefile |
nethercote | c9f3692 | 2004-02-14 16:40:02 +0000 | [diff] [blame] | 1006 | massif/docs/Makefile |
njn | d5a8d24 | 2007-11-02 20:44:57 +0000 | [diff] [blame] | 1007 | massif/ms_print |
njn25 | cac76cb | 2002-09-23 11:21:57 +0000 | [diff] [blame] | 1008 | lackey/Makefile |
njn | f2df9b5 | 2002-10-04 11:35:47 +0000 | [diff] [blame] | 1009 | lackey/tests/Makefile |
njn | 83157fc | 2002-10-03 10:07:34 +0000 | [diff] [blame] | 1010 | lackey/docs/Makefile |
njn25 | cac76cb | 2002-09-23 11:21:57 +0000 | [diff] [blame] | 1011 | none/Makefile |
| 1012 | none/tests/Makefile |
njn | c616819 | 2004-11-29 13:54:10 +0000 | [diff] [blame] | 1013 | none/tests/amd64/Makefile |
cerion | 85665ca | 2005-06-20 15:51:07 +0000 | [diff] [blame] | 1014 | none/tests/ppc32/Makefile |
sewardj | 2c48c7b | 2005-11-29 13:05:56 +0000 | [diff] [blame] | 1015 | none/tests/ppc64/Makefile |
njn | c616819 | 2004-11-29 13:54:10 +0000 | [diff] [blame] | 1016 | none/tests/x86/Makefile |
njn | 9bc8c00 | 2002-10-02 13:49:13 +0000 | [diff] [blame] | 1017 | none/docs/Makefile |
sewardj | 99a2ceb | 2007-11-09 12:30:36 +0000 | [diff] [blame] | 1018 | exp-omega/Makefile |
| 1019 | exp-omega/tests/Makefile |
| 1020 | exp-omega/docs/Makefile |
sewardj | bbec772 | 2007-11-25 14:08:53 +0000 | [diff] [blame] | 1021 | exp-drd/Makefile |
| 1022 | exp-drd/docs/Makefile |
| 1023 | exp-drd/tests/Makefile |
njn25 | cac76cb | 2002-09-23 11:21:57 +0000 | [diff] [blame] | 1024 | ) |
gobry | 3b77789 | 2002-04-04 09:18:39 +0000 | [diff] [blame] | 1025 | |
| 1026 | cat<<EOF |
| 1027 | |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 1028 | Primary build target: ${VG_PLATFORM_PRI} |
sewardj | 8063775 | 2006-03-02 13:48:21 +0000 | [diff] [blame] | 1029 | Secondary build target: ${VG_PLATFORM_SEC} |
sewardj | 0126214 | 2006-01-04 01:20:28 +0000 | [diff] [blame] | 1030 | Default supp files: ${DEFAULT_SUPP} |
gobry | 3b77789 | 2002-04-04 09:18:39 +0000 | [diff] [blame] | 1031 | |
gobry | 3b77789 | 2002-04-04 09:18:39 +0000 | [diff] [blame] | 1032 | EOF |
| 1033 | |
| 1034 | cat<<EOF > default.supp |
| 1035 | # This is a generated file, composed of the following suppression rules: |
| 1036 | # |
| 1037 | # ${DEFAULT_SUPP} |
| 1038 | # |
| 1039 | |
| 1040 | EOF |
| 1041 | |
| 1042 | for file in ${DEFAULT_SUPP} ; do |
| 1043 | cat ${srcdir}/$file >> default.supp |
| 1044 | done |