diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-09-14 18:21:03 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-09-14 18:21:03 +0000 |
commit | 1cf70ff8d58e389ae57f706f6025bf4a102e0f28 (patch) | |
tree | f20ecdcd35ac0c905e1a13d5d380c75ef4cffb71 /projects/Makefile | |
parent | 9934f97bbeaf0600d17a2e0d244495a84f350f78 (diff) | |
download | external_llvm-1cf70ff8d58e389ae57f706f6025bf4a102e0f28.zip external_llvm-1cf70ff8d58e389ae57f706f6025bf4a102e0f28.tar.gz external_llvm-1cf70ff8d58e389ae57f706f6025bf4a102e0f28.tar.bz2 |
The Sparc linking .so problem extends to the sample project as well
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16342 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects/Makefile')
-rw-r--r-- | projects/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/projects/Makefile b/projects/Makefile index e64379b..1e89f6d 100644 --- a/projects/Makefile +++ b/projects/Makefile @@ -15,6 +15,7 @@ DIRS:= $(filter-out llvm-test,$(patsubst $(SourceDir)/%/Makefile,%,$(wildcard $( # Sparc cannot link shared libraries (libtool problem?) which Stacker uses ifeq ($(ARCH), Sparc) DIRS := $(filter-out Stacker, $(DIRS)) +DIRS := $(filter-out sample, $(DIRS)) endif include $(BUILD_SRC_ROOT)/Makefile.rules |