1@LIT_SITE_CFG_IN_HEADER@ 2 3import sys 4 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.has_plugins = @CLANG_PLUGIN_SUPPORT@ 14# Support substitution of the tools and libs dirs with user parameters. This is 15# used when we can't determine the tool dir at configuration time. 16config.llvm_tools_dir = lit_config.substitute("@LLVM_TOOLS_DIR@") 17config.llvm_libs_dir = lit_config.substitute("@LLVM_LIBS_DIR@") 18config.clang_tools_dir = lit_config.substitute("@CURRENT_TOOLS_DIR@") 19 20import lit.llvm 21lit.llvm.initialize(lit_config, config) 22 23# Let the main config do the real work. 24lit_config.load_config(config, "@CLANG_TOOLS_SOURCE_DIR@/test/lit.cfg.py") 25