[CMake] Update dependencies to intrinsics_gen corresponding to r169711.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169724 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2012-12-10 05:27:15 +00:00
parent 12a38adc58
commit 60608b924d
5 changed files with 7 additions and 5 deletions

View File

@ -9,6 +9,8 @@ tablegen(LLVM HexagonGenSubtargetInfo.inc -gen-subtarget)
tablegen(LLVM HexagonGenDFAPacketizer.inc -gen-dfa-packetizer)
add_public_tablegen_target(HexagonCommonTableGen)
set(LLVM_COMMON_DEPENDS intrinsics_gen)
add_llvm_target(HexagonCodeGen
HexagonAsmPrinter.cpp
HexagonCallingConvLower.cpp
@ -33,8 +35,6 @@ add_llvm_target(HexagonCodeGen
HexagonNewValueJump.cpp
)
add_dependencies(LLVMHexagonCodeGen intrinsics_gen)
add_subdirectory(TargetInfo)
add_subdirectory(InstPrinter)
add_subdirectory(MCTargetDesc)

View File

@ -5,4 +5,4 @@ add_llvm_library(LLVMMBlazeAsmPrinter
MBlazeInstPrinter.cpp
)
add_dependencies(LLVMMBlazeAsmPrinter MBlazeCommonTableGen)
add_dependencies(LLVMMBlazeAsmPrinter intrinsics_gen MBlazeCommonTableGen)

View File

@ -4,4 +4,4 @@ add_llvm_library(LLVMMSP430AsmPrinter
MSP430InstPrinter.cpp
)
add_dependencies(LLVMMSP430AsmPrinter MSP430CommonTableGen)
add_dependencies(LLVMMSP430AsmPrinter intrinsics_gen MSP430CommonTableGen)

View File

@ -4,4 +4,4 @@ add_llvm_library(LLVMMipsAsmPrinter
MipsInstPrinter.cpp
)
add_dependencies(LLVMMipsAsmPrinter MipsCommonTableGen)
add_dependencies(LLVMMipsAsmPrinter intrinsics_gen MipsCommonTableGen)

View File

@ -11,6 +11,8 @@ set(SOURCES
LTOModule.cpp
)
set(LLVM_COMMON_DEPENDS intrinsics_gen)
if( NOT WIN32 AND LLVM_ENABLE_PIC )
set(bsl ${BUILD_SHARED_LIBS})
set(BUILD_SHARED_LIBS ON)