brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 152ea6b Raw
26 lines · plain
1@LIT_SITE_CFG_IN_HEADER@2 3import sys4 5config.llvm_plugin_ext = "@LLVM_PLUGIN_EXT@"6config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"7config.clang_tools_binary_dir = "@CLANG_TOOLS_BINARY_DIR@"8config.llvm_shlib_dir = "@SHLIBDIR@"9config.python_executable = "@Python3_EXECUTABLE@"10config.target_triple = "@LLVM_TARGET_TRIPLE@"11config.host_triple = "@LLVM_HOST_TRIPLE@"12config.clang_tidy_staticanalyzer = @CLANG_TIDY_ENABLE_STATIC_ANALYZER@13config.clang_tidy_custom_check = @CLANG_TIDY_ENABLE_QUERY_BASED_CUSTOM_CHECKS@14config.has_plugins = @CLANG_PLUGIN_SUPPORT@15# Support substitution of the tools and libs dirs with user parameters. This is16# used when we can't determine the tool dir at configuration time.17config.llvm_tools_dir = lit_config.substitute("@LLVM_TOOLS_DIR@")18config.llvm_libs_dir = lit_config.substitute("@LLVM_LIBS_DIR@")19config.clang_tools_dir = lit_config.substitute("@CURRENT_TOOLS_DIR@")20 21import lit.llvm22lit.llvm.initialize(lit_config, config)23 24# Let the main config do the real work.25lit_config.load_config(config, "@CLANG_TOOLS_SOURCE_DIR@/test/lit.cfg.py")26