150
|
1 @LIT_SITE_CFG_IN_HEADER@
|
|
2
|
|
3 import sys
|
|
4 import lit.util
|
|
5
|
207
|
6 config.targets_to_build = "@TARGETS_TO_BUILD@".split()
|
150
|
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.debuginfo_tests_obj_root = "@DEBUGINFO_TESTS_BINARY_DIR@"
|
|
14 config.debuginfo_tests_src_root = "@DEBUGINFO_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
|
207
|
19 config.mlir_src_root = "@MLIR_SOURCE_DIR@"
|
150
|
20
|
207
|
21 config.llvm_use_sanitizer = "@LLVM_USE_SANITIZER@"
|
150
|
22
|
|
23 # Support substitution of the tools_dir with user parameters. This is
|
|
24 # used when we can't determine the tool dir at configuration time.
|
|
25 try:
|
|
26 config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
|
|
27 config.llvm_shlib_dir = config.llvm_shlib_dir % lit_config.params
|
|
28 except KeyError:
|
|
29 e = sys.exc_info()[1]
|
|
30 key, = e.args
|
|
31 lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
|
|
32
|
|
33 import lit.llvm
|
|
34 lit.llvm.initialize(lit_config, config)
|
|
35
|
|
36 # Let the main config do the real work.
|
|
37 lit_config.load_config(config, "@DEBUGINFO_TESTS_SOURCE_DIR@/lit.cfg.py")
|