From b185f42ca3472ac1ea9af60bd42f5e6862cd34f8 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Tue, 14 Sep 2004 18:21:03 +0000 Subject: [PATCH] The Sparc linking .so problem extends to the sample project as well llvm-svn: 16342 --- projects/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/Makefile b/projects/Makefile index e64379b7bfd..1e89f6d91bd 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