summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/projects/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/projects/Makefile b/llvm/projects/Makefile
index ab4c7e283d8..e64379b7bfd 100644
--- a/llvm/projects/Makefile
+++ b/llvm/projects/Makefile
@@ -12,4 +12,9 @@ include $(LEVEL)/Makefile.config
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
OpenPOWER on IntegriCloud