summaryrefslogtreecommitdiff
path: root/make/platform
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2013-11-03 07:06:29 +0000
committerBob Wilson <bob.wilson@apple.com>2013-11-03 07:06:29 +0000
commitf7e6f383d9c661ccbcd986fc1478336f57f4ce7c (patch)
treebd4c752eb8b566a8cfbcf819651befd7896f6dc9 /make/platform
parente4f9f8a1296768a7a6b6646a3b241a379f4a5e15 (diff)
Push back various changes for building Apple's compiler-rt dylib.
These changes had accumulated internally at Apple for no good reason. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@193944 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'make/platform')
-rw-r--r--make/platform/darwin_bni.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/make/platform/darwin_bni.mk b/make/platform/darwin_bni.mk
index afd04313e..03e8d290c 100644
--- a/make/platform/darwin_bni.mk
+++ b/make/platform/darwin_bni.mk
@@ -9,12 +9,12 @@ Configs := Debug Release Profile Static
UniversalArchs := $(RC_ARCHS)
ifneq (,$(SDKROOT))
- override CC := $(shell xcrun -sdk $(SDKROOT) -find clang)
- AR := $(shell xcrun -sdk $(SDKROOT) -find ar)
- RANLIB := $(shell xcrun -sdk $(SDKROOT) -find ranlib)
- STRIP := $(shell xcrun -sdk $(SDKROOT) -find strip)
- LIPO := $(shell xcrun -sdk $(SDKROOT) -find lipo)
- DSYMUTIL := $(shell xcrun -sdk $(SDKROOT) -find dsymutil)
+ override CC := $(shell xcrun -sdk $(SDKROOT) -find clang || echo "false")
+ AR := $(shell xcrun -sdk $(SDKROOT) -find ar || echo "false")
+ RANLIB := $(shell xcrun -sdk $(SDKROOT) -find ranlib || echo "false")
+ STRIP := $(shell xcrun -sdk $(SDKROOT) -find strip || echo "false")
+ LIPO := $(shell xcrun -sdk $(SDKROOT) -find lipo || echo "false")
+ DSYMUTIL := $(shell xcrun -sdk $(SDKROOT) -find dsymutil || echo "false")
endif
ifneq ($(IPHONEOS_DEPLOYMENT_TARGET),)