summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--projects/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/projects/Makefile b/projects/Makefile
index f2a604a55f..0997a2a381 100644
--- a/projects/Makefile
+++ b/projects/Makefile
@@ -18,4 +18,10 @@ DIRS := $(filter-out Stacker, $(DIRS))
DIRS := $(filter-out sample, $(DIRS))
endif
+
+# Universal builds can't build stacker, which uses llvm-gcc -S.
+ifdef UNIVERSAL
+DIRS := $(filter-out Stacker, $(DIRS))
+endif
+
include $(PROJ_SRC_ROOT)/Makefile.rules