diff options
| author | Andrew Lenharth <andrewl@lenharth.org> | 2005-06-08 22:32:51 +0000 |
|---|---|---|
| committer | Andrew Lenharth <andrewl@lenharth.org> | 2005-06-08 22:32:51 +0000 |
| commit | ea9af931b85ef474fe7d88db7883a3b960f430db (patch) | |
| tree | ddfae8521679902bc16ff90609c7a91947d30d4c /llvm | |
| parent | c504a3db60dc00b5ed76a16ef6646a6b7b9e71db (diff) | |
| download | bcm5719-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/Makefile | 8 |
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 |

