From 002a63dfd745f878b2cb6d73a270c695b26d135f Mon Sep 17 00:00:00 2001 From: Rhys Kidd Date: Sun, 11 Sep 2016 13:54:04 +0000 Subject: [PATCH] =?UTF-8?q?Support=20clang=20compiler=20shipped=20with=20A?= =?UTF-8?q?pple=E2=80=99s=20Xcode=208.=20bz#366138.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This applies to both OS X 10.11 and macOS 10.12. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15949 --- NEWS | 1 + configure.ac | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 75ef71646..3f4741143 100644 --- a/NEWS +++ b/NEWS @@ -153,6 +153,7 @@ where XXXXXX is the bug number as listed below. 362329 Valgrind does not support the IBM POWER ISA 3.0 instructions, part 3/5 363858 Valgrind does not support the IBM POWER ISA 3.0 instructions, part 4/5 364948 Valgrind does not support the IBM POWER ISA 3.0 instructions, part 5/5 +366138 Fix configure errors out when using Xcode 8 (clang 8.0.0) n-i-bz Fix incorrect (or infinite loop) unwind on RHEL7 x86 and amd64 n-i-bz massif --pages-as-heap=yes does not report peak caused by mmap+munmap diff --git a/configure.ac b/configure.ac index ef61c155a..63c592fb2 100644 --- a/configure.ac +++ b/configure.ac @@ -154,7 +154,7 @@ AM_CONDITIONAL(COMPILER_IS_ICC, test $is_clang = icc) # Note: m4 arguments are quoted with [ and ] so square brackets in shell # statements have to be quoted. case "${is_clang}-${gcc_version}" in - applellvm-5.1|applellvm-6.*|applellvm-7.*) + applellvm-5.1|applellvm-6.*|applellvm-7.*|applellvm-8.*) AC_MSG_RESULT([ok (Apple LLVM version ${gcc_version})]) ;; icc-1[[3-9]].*)