
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
25 lines
529 B
Python
25 lines
529 B
Python
# -*- Python -*-
|
|
|
|
import os
|
|
|
|
import lit.formats
|
|
import lit.util
|
|
|
|
from lit.llvm import llvm_config
|
|
from lit.llvm.subst import ToolSubst
|
|
|
|
config.name = "ORC-RT"
|
|
config.test_format = lit.formats.ShTest()
|
|
config.test_source_root = os.path.dirname(__file__)
|
|
config.test_exec_root = os.path.join(config.orc_rt_obj_root, "test")
|
|
config.suffixes = [
|
|
".test"
|
|
]
|
|
|
|
llvm_config.with_environment(
|
|
"PATH",
|
|
os.path.join(config.orc_rt_obj_root, "tools", "orc-executor"),
|
|
append_path=True)
|
|
|
|
llvm_config.use_default_substitutions()
|