diff options
author | Jakub Jelinek <jakub@redhat.com> | 2012-11-23 01:31:54 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2012-11-23 01:31:54 +0100 |
commit | 64548f3b797617cde14f01874e56c498fe7b5a48 (patch) | |
tree | 339414cc4c7cfeb18efd639d3d7dc3f403afa560 /libsanitizer/Makefile.am | |
parent | 8e5038ffa42bc77bce5fa30eb11e5c94fdb0fc74 (diff) | |
download | gcc-64548f3b797617cde14f01874e56c498fe7b5a48.zip gcc-64548f3b797617cde14f01874e56c498fe7b5a48.tar.gz gcc-64548f3b797617cde14f01874e56c498fe7b5a48.tar.bz2 |
Makefile.am (AM_CXXFLAGS): Remove -Wno-variadic-macros.
* tsan/Makefile.am (AM_CXXFLAGS): Remove -Wno-variadic-macros.
* Makefile.am (SUBDIRS): Guard tsan addition with TSAN_SUPPORTED
automake conditional instead of !MULTISUBDIR32.
* configure.tgt: Set TSAN_SUPPORTED=yes for x86_64/i686-linux
for 64-bit multilib.
* configure.ac: Check for void * size, source in configure.tgt,
define TSAN_SUPPORTED conditional instead of MULTILIBDIR32.
* configure: Regenerated.
* Makefile.in: Regenerated.
* tsan/Makefile.in: Regenerated.
From-SVN: r193741
Diffstat (limited to 'libsanitizer/Makefile.am')
-rw-r--r-- | libsanitizer/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libsanitizer/Makefile.am b/libsanitizer/Makefile.am index d2192b2..64d3d2e 100644 --- a/libsanitizer/Makefile.am +++ b/libsanitizer/Makefile.am @@ -1,9 +1,9 @@ ACLOCAL_AMFLAGS = -I .. -I ../config -if MULTISUBDIR32 -SUBDIRS = interception sanitizer_common asan -else +if TSAN_SUPPORTED SUBDIRS = interception sanitizer_common asan tsan +else +SUBDIRS = interception sanitizer_common asan endif # Work around what appears to be a GNU make bug handling MAKEFLAGS |