forked from OSchip/llvm-project
[CMake] Update dependencies to intrinsics_gen corresponding to r169711.
llvm-svn: 169724
This commit is contained in:
parent
74f29afd58
commit
6b819c5fb1
|
@ -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)
|
||||
|
|
|
@ -5,4 +5,4 @@ add_llvm_library(LLVMMBlazeAsmPrinter
|
|||
MBlazeInstPrinter.cpp
|
||||
)
|
||||
|
||||
add_dependencies(LLVMMBlazeAsmPrinter MBlazeCommonTableGen)
|
||||
add_dependencies(LLVMMBlazeAsmPrinter intrinsics_gen MBlazeCommonTableGen)
|
||||
|
|
|
@ -4,4 +4,4 @@ add_llvm_library(LLVMMSP430AsmPrinter
|
|||
MSP430InstPrinter.cpp
|
||||
)
|
||||
|
||||
add_dependencies(LLVMMSP430AsmPrinter MSP430CommonTableGen)
|
||||
add_dependencies(LLVMMSP430AsmPrinter intrinsics_gen MSP430CommonTableGen)
|
||||
|
|
|
@ -4,4 +4,4 @@ add_llvm_library(LLVMMipsAsmPrinter
|
|||
MipsInstPrinter.cpp
|
||||
)
|
||||
|
||||
add_dependencies(LLVMMipsAsmPrinter MipsCommonTableGen)
|
||||
add_dependencies(LLVMMipsAsmPrinter intrinsics_gen MipsCommonTableGen)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue