[compiler-rt] r173977 - [build/clang_darwin] Fix the case reversal in r173465.
Daniel Dunbar
daniel at zuster.org
Wed Jan 30 13:45:35 PST 2013
Author: ddunbar
Date: Wed Jan 30 15:45:35 2013
New Revision: 173977
URL: http://llvm.org/viewvc/llvm-project?rev=173977&view=rev
Log:
[build/clang_darwin] Fix the case reversal in r173465.
- I got confused by the double negative, the test succends on 10.6, in which
case we *do* want to perform the filter-out.
Modified:
compiler-rt/trunk/make/platform/clang_darwin.mk
Modified: compiler-rt/trunk/make/platform/clang_darwin.mk
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/make/platform/clang_darwin.mk?rev=173977&r1=173976&r2=173977&view=diff
==============================================================================
--- compiler-rt/trunk/make/platform/clang_darwin.mk (original)
+++ compiler-rt/trunk/make/platform/clang_darwin.mk Wed Jan 30 15:45:35 2013
@@ -84,7 +84,7 @@ UniversalArchs.ubsan_osx := $(call Check
# build the libraries themselves so that Clang can find them where it expects
# them, even though they might not have an expected slice.
ifneq ($(shell which sw_vers),)
-ifeq ($(shell sw_vers -productVersion | grep 10.6),)
+ifneq ($(shell sw_vers -productVersion | grep 10.6),)
UniversalArchs.ios := $(filter-out armv7, $(UniversalArchs.ios))
UniversalArchs.cc_kext := $(filter-out armv7, $(UniversalArchs.cc_kext))
UniversalArchs.cc_kext_ios5 := $(filter-out armv7, $(UniversalArchs.cc_kext_ios5))
More information about the llvm-commits
mailing list