26 lines · plain
1@LIT_SITE_CFG_IN_HEADER@2 3# Variables needed for common clang config.4config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"5config.target_triple = "@LLVM_TARGET_TRIPLE@"6config.host_triple = "@LLVM_HOST_TRIPLE@"7config.python_executable = "@Python3_EXECUTABLE@"8# Support substitution of the tools and libs dirs with user parameters. This is9# used when we can't determine the tool dir at configuration time.10config.clang_tools_dir = lit_config.substitute("@CURRENT_TOOLS_DIR@")11config.llvm_tools_dir = lit_config.substitute("@LLVM_TOOLS_DIR@")12config.llvm_libs_dir = lit_config.substitute("@LLVM_LIBS_DIR@")13config.llvm_shlib_dir = "@SHLIBDIR@"14 15config.clangd_source_dir = "@CMAKE_CURRENT_SOURCE_DIR@/.."16config.clangd_binary_dir = "@CMAKE_CURRENT_BINARY_DIR@/.."17config.clangd_build_xpc = @CLANGD_BUILD_XPC@18config.clangd_build_dexp = @CLANGD_BUILD_DEXP@19config.clangd_enable_remote = @CLANGD_ENABLE_REMOTE@20config.clangd_tidy_checks = @CLANGD_TIDY_CHECKS@21config.have_zlib = @LLVM_ENABLE_ZLIB@22config.have_benchmarks = "@LLVM_INCLUDE_BENCHMARKS@"23 24# Delegate logic to lit.cfg.py.25lit_config.load_config(config, "@CMAKE_CURRENT_SOURCE_DIR@/lit.cfg.py")26