aboutsummaryrefslogtreecommitdiff
path: root/compiler-rt/make
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-03-26 21:07:05 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-03-26 21:07:05 +0000
commit36e6b654a2cb224af8b64df481cf66f80af550d3 (patch)
tree7db571e1feff5878ecf2093b74438676ab4cb9c1 /compiler-rt/make
parentf9edf80c39cec48906529ca168bc155cd8a0367b (diff)
downloadllvm-36e6b654a2cb224af8b64df481cf66f80af550d3.tar.gz
llvm-36e6b654a2cb224af8b64df481cf66f80af550d3.tar.bz2
llvm-36e6b654a2cb224af8b64df481cf66f80af550d3.zip
Don't build an armv7 slice for now, it has the same stuff as on armv6.
llvm-svn: 99654
Diffstat (limited to 'compiler-rt/make')
-rw-r--r--compiler-rt/make/platform/clang_darwin.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/compiler-rt/make/platform/clang_darwin.mk b/compiler-rt/make/platform/clang_darwin.mk
index c33f0489726b..ffa0dabb402c 100644
--- a/compiler-rt/make/platform/clang_darwin.mk
+++ b/compiler-rt/make/platform/clang_darwin.mk
@@ -22,7 +22,11 @@ UniversalArchs.armv6 := armv6
# Configuration for use with kernel/kexts.
Configs += cc_kext
-UniversalArchs.cc_kext := armv6 armv7 i386 x86_64
+UniversalArchs.cc_kext := armv6 i386 x86_64
+
+# FIXME: Don't build an armv7 slice currently, they have the same functions.
+#
+#UniversalArchs.cc_kext := armv6 armv7 i386 x86_64
###