diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-09-13 22:42:54 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-09-13 22:42:54 +0000 |
commit | 77aedd18c7c0fa70769f5aabe03a62e35367b736 (patch) | |
tree | 72d70aa16ba921c6879bedd2560dcd0f2cbaab2f /llvm | |
parent | 1f164a6e09654949187801f3c32b01019f3ab661 (diff) | |
download | bcm5719-llvm-77aedd18c7c0fa70769f5aabe03a62e35367b736.tar.gz bcm5719-llvm-77aedd18c7c0fa70769f5aabe03a62e35367b736.zip |
Sparc cannot link shared objects (libtool issue) which affects Stacker.
llvm-svn: 16320
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/projects/Makefile | 5 |
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 |