summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2005-06-08 22:32:51 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2005-06-08 22:32:51 +0000
commitea9af931b85ef474fe7d88db7883a3b960f430db (patch)
treeddfae8521679902bc16ff90609c7a91947d30d4c /llvm
parentc504a3db60dc00b5ed76a16ef6646a6b7b9e71db (diff)
downloadbcm5719-llvm-ea9af931b85ef474fe7d88db7883a3b960f430db.tar.gz
bcm5719-llvm-ea9af931b85ef474fe7d88db7883a3b960f430db.zip
make SparcV8 and V9 seperately configurable
llvm-svn: 22204
Diffstat (limited to 'llvm')
-rw-r--r--llvm/tools/llc/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/tools/llc/Makefile b/llvm/tools/llc/Makefile
index 1e503670064..82d6b991d22 100644
--- a/llvm/tools/llc/Makefile
+++ b/llvm/tools/llc/Makefile
@@ -29,16 +29,20 @@ USEDLIB += LLVMSkeleton
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
OpenPOWER on IntegriCloud