|
From: <sv...@va...> - 2016-09-11 13:54:11
|
Author: rhyskidd
Date: Sun Sep 11 14:54:04 2016
New Revision: 15949
Log:
Support clang compiler shipped with Apple’s Xcode 8. bz#366138.
This applies to both OS X 10.11 and macOS 10.12.
Modified:
trunk/NEWS
trunk/configure.ac
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Sun Sep 11 14:54:04 2016
@@ -153,6 +153,7 @@
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
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Sun Sep 11 14:54:04 2016
@@ -154,7 +154,7 @@
# 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]].*)
|