diff --git a/projects/Makefile b/projects/Makefile index ab4c7e283d8..e64379b7bfd 100644 --- a/projects/Makefile +++ b/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