Sparc cannot link shared objects (libtool issue) which affects Stacker.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16320 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/projects/Makefile b/projects/Makefile
index ab4c7e2..e64379b 100644
--- a/projects/Makefile
+++ b/projects/Makefile
@@ -12,4 +12,9 @@
DIRS:= $(filter-out llvm-test,$(patsubst $(SourceDir)/%/Makefile,%,$(wildcard $(SourceDir)/*/Makefile)))
+# Sparc cannot link shared libraries (libtool problem?) which Stacker uses
+ifeq ($(ARCH), Sparc)
+DIRS := $(filter-out Stacker, $(DIRS))
+endif
+
include $(BUILD_SRC_ROOT)/Makefile.rules