Files
clang-p2996/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/CMakeLists.txt
Stefan Gränitz b7d5b0d0ee [Orc][examples] Revisit advanced LLJIT examples and tests (#76236)
Some maintenance on implementation and tests:
* Drop manual TargetMachineBuilder setup
* Drop addDebugSupport() in favor of Orc's enableDebuggerSupport()
* Check that debug support plugins append jit_code_entry
* Update and reduce sample input
2024-01-03 09:51:18 +01:00

26 lines
404 B
CMake

set(LLVM_LINK_COMPONENTS
Core
ExecutionEngine
IRReader
JITLink
OrcDebugging
OrcJIT
OrcShared
OrcTargetProcess
Support
TargetParser
nativecodegen
)
if (LLVM_INCLUDE_UTILS)
add_llvm_example(LLJITWithRemoteDebugging
LLJITWithRemoteDebugging.cpp
RemoteJITUtils.cpp
DEPENDS
llvm-jitlink-executor
)
export_executable_symbols(LLJITWithRemoteDebugging)
endif()