We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a52fabe commit 4ebd40aCopy full SHA for 4ebd40a
bolt/lib/Target/PowerPC/CMakeLists.txt
@@ -1,8 +1,16 @@
1
add_llvm_library(LLVMBOLTTargetPowerPC
2
PPCMCPlusBuilder.cpp
3
- )
+)
4
5
target_include_directories(LLVMBOLTTargetPowerPC PRIVATE
6
${LLVM_BINARY_DIR}/include
7
${LLVM_SOURCE_DIR}/include
8
9
+
10
+file(MAKE_DIRECTORY "${LLVM_BINARY_DIR}/include/llvm/Target/PowerPC")
11
12
+add_custom_command(TARGET LLVMBOLTTargetPowerPC POST_BUILD
13
+ COMMAND ${CMAKE_COMMAND} -E copy_if_different
14
+ "${LLVM_BINARY_DIR}/lib/Target/PowerPC/PPCGenInstrInfo.inc"
15
+ "${LLVM_BINARY_DIR}/include/llvm/Target/PowerPC/PPCGenInstrInfo.inc"
16
)
0 commit comments