teak-llvm/llvm/examples/LLJITExamples/CMakeLists.txt
Lang Hames bb7a5707ac [examples][ORC] Add an example of how to use a custom ObjectLinkingLayer plugin.
ObjectLinkingLayer::Plugin instances can be used to receive events from
ObjectLinkingLayer, and to inspect/modify JITLink linker graphs. This example
shows how to write and set up a plugin to dump the linker graph at various
points in the linking process.
2020-01-23 19:18:16 -08:00

6 lines
219 B
CMake

add_subdirectory(LLJITDumpObjects)
add_subdirectory(LLJITWithObjectCache)
add_subdirectory(LLJITWithCustomObjectLinkingLayer)
add_subdirectory(LLJITWithLazyReexports)
add_subdirectory(LLJITWithObjectLinkingLayerPlugin)