[llvm-commits] CVS: llvm/projects/Makefile

Misha Brukman brukman at cs.uiuc.edu
Mon Sep 13 15:43:05 PDT 2004



Changes in directory llvm/projects:

Makefile updated: 1.10 -> 1.11
---
Log message:

Sparc cannot link shared objects (libtool issue) which affects Stacker.


---
Diffs of the changes:  (+5 -0)

Index: llvm/projects/Makefile
diff -u llvm/projects/Makefile:1.10 llvm/projects/Makefile:1.11
--- llvm/projects/Makefile:1.10	Sat Sep  4 18:07:57 2004
+++ llvm/projects/Makefile	Mon Sep 13 17:42:54 2004
@@ -12,4 +12,9 @@
 
 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






More information about the llvm-commits mailing list