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 | b9210123a9a006c5efe7feb70242c502433e780f (patch) | |
tree | ef3d0e0bf5e38fd595d3c4b691c2037956932b6a /projects/Makefile | |
parent | 865c415b5c5a85f7982d2e145b9f9a8b10213189 (diff) |
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
Diffstat (limited to 'projects/Makefile')
-rw-r--r-- | projects/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/projects/Makefile b/projects/Makefile index ab4c7e283d..e64379b7bf 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 |