mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
e2925289c9
Adds basic support for LLJITBuilder and DynamicLibrarySearchGenerator. This allows C API clients to configure LLJIT to expose process symbols to JIT'd code. An example of this is added in llvm/examples/OrcV2CBindingsReflectProcessSymbols.
16 lines
200 B
CMake
16 lines
200 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Core
|
|
ExecutionEngine
|
|
IRReader
|
|
JITLink
|
|
MC
|
|
OrcJIT
|
|
Support
|
|
Target
|
|
nativecodegen
|
|
)
|
|
|
|
add_llvm_example(OrcV2CBindingsBasicUsage
|
|
OrcV2CBindingsBasicUsage.c
|
|
)
|