]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/lit.site.cfg.py.in
Vendor import of lld trunk r338150:
[FreeBSD/FreeBSD.git] / test / lit.site.cfg.py.in
1 @LIT_SITE_CFG_IN_HEADER@
2
3 import lit.util
4
5 config.have_dia_sdk = lit.util.pythonize_bool("@LLVM_ENABLE_DIA_SDK@")
6 config.llvm_src_root = "@LLVM_SOURCE_DIR@"
7 config.llvm_obj_root = "@LLVM_BINARY_DIR@"
8 config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
9 config.llvm_libs_dir = "@LLVM_LIBS_DIR@"
10 config.llvm_libxml2_enabled = "@LLVM_LIBXML2_ENABLED@"
11 config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"
12 config.lld_obj_root = "@LLD_BINARY_DIR@"
13 config.lld_libs_dir = "@LLVM_LIBRARY_OUTPUT_INTDIR@"
14 config.lld_tools_dir = "@LLVM_RUNTIME_OUTPUT_INTDIR@"
15 config.target_triple = "@TARGET_TRIPLE@"
16 config.python_executable = "@PYTHON_EXECUTABLE@"
17 config.have_zlib = @HAVE_LIBZ@
18
19 # Support substitution of the tools and libs dirs with user parameters. This is
20 # used when we can't determine the tool dir at configuration time.
21 try:
22     config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
23     config.llvm_libs_dir = config.llvm_libs_dir % lit_config.params
24 except KeyError as e:
25     key, = e.args
26     lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
27
28 @LIT_SITE_CFG_IN_FOOTER@
29
30 # Let the main config do the real work.
31 lit_config.load_config(config, "@LLD_SOURCE_DIR@/test/lit.cfg.py")