From: Chris Lattner Date: Sat, 30 Sep 2006 00:24:20 +0000 (+0000) Subject: Stacker doesn't build universal right. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0d59c034322bd55e7b6d4ee1ea9f2b1d0473c92b;p=oota-llvm.git Stacker doesn't build universal right. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30675 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/projects/Makefile b/projects/Makefile index f2a604a55fb..0997a2a3817 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