diff options
author | Daniel Dunbar <daniel@zuster.org> | 2012-10-15 22:23:34 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2012-10-15 22:23:34 +0000 |
commit | 345b09cb8064796467fae90c4b800923a461d308 (patch) | |
tree | 4dee65fb6910374fdc83290593f98d2f93da4daa | |
parent | ccd312520b2ee8a25e598fbf7b8836de7072e4b8 (diff) | |
download | bcm5719-llvm-345b09cb8064796467fae90c4b800923a461d308.tar.gz bcm5719-llvm-345b09cb8064796467fae90c4b800923a461d308.zip |
platform/clang_darwin: Drop an x86_64 slice into cc_kext_ios5.
- This doesn't get used, but it is a simple workaround for PR14013.
llvm-svn: 165987
-rw-r--r-- | compiler-rt/make/platform/clang_darwin.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/make/platform/clang_darwin.mk b/compiler-rt/make/platform/clang_darwin.mk index f1e1d317aa0..6dc31d55dd5 100644 --- a/compiler-rt/make/platform/clang_darwin.mk +++ b/compiler-rt/make/platform/clang_darwin.mk @@ -61,7 +61,7 @@ UniversalArchs.cc_kext := $(call CheckArches,armv7 i386 x86_64,cc_kext) # Configuration for use with kernel/kexts for iOS 5.0 and earlier (which used # a different code generation strategy). Configs += cc_kext_ios5 -UniversalArchs.cc_kext_ios5 := $(call CheckArches,armv7) +UniversalArchs.cc_kext_ios5 := $(call CheckArches,x86_64 armv7,cc_kext_ios5) # Configurations which define the profiling support functions. Configs += profile_osx |