1 2set(LLVM_LINK_COMPONENTS 3 Core 4 ExecutionEngine 5 IRReader 6 JITLink 7 Object 8 OrcDebugging 9 OrcJIT 10 OrcShared 11 OrcTargetProcess 12 Passes 13 RuntimeDyld 14 Support 15 TargetParser 16 native 17 ) 18 19add_llvm_unittest(OrcJITTests 20 CoreAPIsTest.cpp 21 ExecutorAddressTest.cpp 22 ExecutionSessionWrapperFunctionCallsTest.cpp 23 EPCGenericJITLinkMemoryManagerTest.cpp 24 EPCGenericMemoryAccessTest.cpp 25 IndirectionUtilsTest.cpp 26 JITTargetMachineBuilderTest.cpp 27 LazyCallThroughAndReexportsTest.cpp 28 LookupAndRecordAddrsTest.cpp 29 MachOPlatformTest.cpp 30 MapperJITLinkMemoryManagerTest.cpp 31 MemoryFlagsTest.cpp 32 MemoryMapperTest.cpp 33 ObjectFormatsTest.cpp 34 ObjectLinkingLayerTest.cpp 35 OrcCAPITest.cpp 36 OrcTestCommon.cpp 37 ResourceTrackerTest.cpp 38 RTDyldObjectLinkingLayerTest.cpp 39 SharedMemoryMapperTest.cpp 40 SimpleExecutorMemoryManagerTest.cpp 41 SimplePackedSerializationTest.cpp 42 SymbolStringPoolTest.cpp 43 TaskDispatchTest.cpp 44 ThreadSafeModuleTest.cpp 45 WrapperFunctionUtilsTest.cpp 46 JITLinkRedirectionManagerTest.cpp 47 ReOptimizeLayerTest.cpp 48 49 EXPORT_SYMBOLS 50 ) 51 52target_link_libraries(OrcJITTests PRIVATE 53 LLVMTestingSupport 54 ${ORC_JIT_TEST_LIBS}) 55