From 34fd6e9cc2599058d6fbff135808cfabe215ab58 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Thu, 14 Jun 2012 20:00:25 +0000 Subject: [PATCH] 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 --- compiler-rt/make/platform/clang_darwin.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/make/platform/clang_darwin.mk b/compiler-rt/make/platform/clang_darwin.mk index 96fc942e1e00..d3f7748d1496 100644 --- a/compiler-rt/make/platform/clang_darwin.mk +++ b/compiler-rt/make/platform/clang_darwin.mk @@ -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 \