Don't build compiler-rt arm code on darwin. Fixes PR12918.

I'm not sure if this is the right fix, but this has been broken
for two weeks and pleas for review were ignored. It seems to do
the right thing.

llvm-svn: 158466
This commit is contained in:
Nico Weber 2012-06-14 20:00:25 +00:00
parent 4555d5b471
commit 34fd6e9cc2

View File

@ -12,6 +12,7 @@ CheckArches = \
$(shell \
result=""; \
for arch in $(1); do \
if [ "$$arch" = "armv6" -o "$$arch" = "armv7" ]; then continue; fi; \
if $(CC) -arch $$arch -c \
-integrated-as \
$(ProjSrcRoot)/make/platform/clang_darwin_test_input.c \