
Includes CMake files and placeholder header, library, test tool, regression test and unit test. The aim for this project is to create a replacement for the existing ORC Runtime that currently resides in `llvm-project/compiler-rt/lib/orc`. The new project will provide a superset of the original features, and the old runtime will be removed once the new runtime is sufficiently developed. See discussion at https://discourse.llvm.org/t/rfc-move-orc-executor-support-into-top-level-project/81049
17 lines
477 B
Python
17 lines
477 B
Python
@LIT_SITE_CFG_IN_HEADER@
|
|
|
|
import sys
|
|
|
|
config.llvm_src_root = "@LLVM_SOURCE_DIR@"
|
|
config.llvm_obj_root = "@LLVM_BINARY_DIR@"
|
|
config.orc_rt_obj_root = "@ORC_RT_BINARY_DIR@"
|
|
config.host_triple = "@LLVM_HOST_TRIPLE@"
|
|
config.target_triple = "@LLVM_TARGET_TRIPLE@"
|
|
config.llvm_tools_dir = "@ORC_RT_LLVM_TOOLS_DIR@"
|
|
|
|
|
|
import lit.llvm
|
|
lit.llvm.initialize(lit_config, config)
|
|
# Let the main config do the real work.
|
|
lit_config.load_config(config, "@ORC_RT_SOURCE_DIR@/test/lit.cfg.py")
|