1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

make SparcV8 and V9 seperately configurable

llvm-svn: 22204
This commit is contained in:
Andrew Lenharth 2005-06-08 22:32:51 +00:00
parent ec1d1444bd
commit 167120f2b7

View File

@ -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