You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1003 B
25 lines
1003 B
4 months ago
|
@LIT_SITE_CFG_IN_HEADER@
|
||
|
|
||
|
# Generic config options for all compiler-rt unit tests.
|
||
|
config.target_triple = "@TARGET_TRIPLE@"
|
||
|
config.llvm_src_root = "@LLVM_MAIN_SRC_DIR@"
|
||
|
config.llvm_obj_root = "@LLVM_BINARY_DIR@"
|
||
|
config.llvm_tools_dir = "@LLVM_TOOLS_BINARY_DIR@"
|
||
|
config.compiler_rt_src_root = "@COMPILER_RT_SOURCE_DIR@"
|
||
|
config.compiler_rt_libdir = "@COMPILER_RT_LIBRARY_OUTPUT_DIR@"
|
||
|
config.llvm_build_mode = "@LLVM_BUILD_MODE@"
|
||
|
config.host_arch = "@HOST_ARCH@"
|
||
|
config.host_os = "@HOST_OS@"
|
||
|
|
||
|
# LLVM tools dir and build mode can be passed in lit parameters,
|
||
|
# so try to apply substitution.
|
||
|
try:
|
||
|
config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
|
||
|
config.llvm_build_mode = config.llvm_build_mode % lit_config.params
|
||
|
except KeyError as e:
|
||
|
key, = e.args
|
||
|
lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key, key))
|
||
|
|
||
|
# Setup attributes common for all compiler-rt unit tests.
|
||
|
lit_config.load_config(config, "@COMPILER_RT_SOURCE_DIR@/unittests/lit.common.unit.cfg")
|