1 @LIT_SITE_CFG_IN_HEADER@
6 config
.targets_to_build
= "@TARGETS_TO_BUILD@".split()
7 config
.llvm_src_root
= "@LLVM_SOURCE_DIR@"
8 config
.llvm_tools_dir
= "@LLVM_TOOLS_DIR@"
9 config
.llvm_libs_dir
= "@LLVM_LIBS_DIR@"
10 config
.llvm_shlib_dir
= "@SHLIBDIR@"
11 config
.lit_tools_dir
= "@LLVM_LIT_TOOLS_DIR@"
12 config
.llvm_plugin_ext
= "@LLVM_PLUGIN_EXT@"
13 config
.cross_project_tests_obj_root
= "@CROSS_PROJECT_TESTS_BINARY_DIR@"
14 config
.cross_project_tests_src_root
= "@CROSS_PROJECT_TESTS_SOURCE_DIR@"
15 config
.host_triple
= "@LLVM_HOST_TRIPLE@"
16 config
.target_triple
= "@TARGET_TRIPLE@"
17 config
.is_msvc
= lit
.util
.pythonize_bool("@MSVC@")
18 config
.llvm_enabled_projects
= "@LLVM_ENABLE_PROJECTS@".split(";")
20 config
.mlir_src_root
= "@MLIR_SOURCE_DIR@"
22 config
.llvm_use_sanitizer
= "@LLVM_USE_SANITIZER@"
24 # Support substitution of the tools_dir with user parameters. This is
25 # used when we can't determine the tool dir at configuration time.
27 config
.llvm_tools_dir
= config
.llvm_tools_dir
% lit_config
.params
28 config
.llvm_shlib_dir
= config
.llvm_shlib_dir
% lit_config
.params
32 lit_config
.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key
,key
))
35 lit
.llvm
.initialize(lit_config
, config
)
37 # Let the main config do the real work.
38 lit_config
.load_config(config
, "@CROSS_PROJECT_TESTS_SOURCE_DIR@/lit.cfg.py")