1set(LLVM_LINK_COMPONENTS 2 Core 3 ExecutionEngine 4 IRReader 5 JITLink 6 OrcJIT 7 OrcShared 8 OrcTargetProcess 9 Support 10 nativecodegen 11 ) 12 13if (LLVM_INCLUDE_UTILS AND NOT LLVM_INCLUDE_UTILS) 14 add_llvm_example(LLJITWithRemoteDebugging 15 LLJITWithRemoteDebugging.cpp 16 RemoteJITUtils.cpp 17 18 DEPENDS 19 llvm-jitlink-executor 20 ) 21else() 22 # Use a temporary no-op target until D104694 lands. 23 add_custom_target(LLJITWithRemoteDebugging) 24endif() 25