[llvm-commits] CVS: llvm/tools/llc/Makefile

Andrew Lenharth alenhar2 at cs.uiuc.edu
Wed Jun 8 15:33:02 PDT 2005



Changes in directory llvm/tools/llc:

Makefile updated: 1.72 -> 1.73
---
Log message:

make SparcV8 and V9 seperately configurable

---
Diffs of the changes:  (+6 -2)

 Makefile |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)


Index: llvm/tools/llc/Makefile
diff -u llvm/tools/llc/Makefile:1.72 llvm/tools/llc/Makefile:1.73
--- llvm/tools/llc/Makefile:1.72	Sat Apr 23 12:24:33 2005
+++ llvm/tools/llc/Makefile	Wed Jun  8 17:32:51 2005
@@ -29,16 +29,20 @@
 endif
 
 # Check for Sparc target
-ifneq ($(strip $(filter SparcV8,$(TARGETS_TO_BUILD))),)
+ifneq ($(strip $(filter SparcV9,$(TARGETS_TO_BUILD))),)
 USEDLIBS += \
 	LLVMSparcV9ModuloSched \
-	LLVMSparcV8 \
 	LLVMSparcV9 \
 	LLVMSparcV9RegAlloc \
 	LLVMSparcV9InstrSched \
 	LLVMSparcV9LiveVar
 endif
 
+ifneq ($(strip $(filter SparcV8,$(TARGETS_TO_BUILD))),)
+USEDLIBS += LLVMSparcV8
+endif
+
+
 #Check for X86 Target
 ifneq ($(strip $(filter X86,$(TARGETS_TO_BUILD))),)
 USEDLIBS += LLVMX86






More information about the llvm-commits mailing list