forked from OSchip/llvm-project
39 lines
1.3 KiB
INI
39 lines
1.3 KiB
INI
@LIT_SITE_CFG_IN_HEADER@
|
|
|
|
config.llvm_src_root = "@LLVM_SOURCE_DIR@"
|
|
config.llvm_obj_root = "@LLVM_BINARY_DIR@"
|
|
config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
|
|
config.llvm_libs_dir = "@LLVM_LIBS_DIR@"
|
|
config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"
|
|
config.lldb_obj_root = "@LLDB_BINARY_DIR@"
|
|
config.target_triple = "@TARGET_TRIPLE@"
|
|
config.python_executable = "@PYTHON_EXECUTABLE@"
|
|
config.cc = "@CMAKE_C_COMPILER@"
|
|
config.cxx = "@CMAKE_CXX_COMPILER@"
|
|
|
|
test_c_compiler = "@LLDB_TEST_C_COMPILER@"
|
|
test_cxx_compiler = "@LLDB_TEST_CXX_COMPILER@"
|
|
test_clang = "@LLDB_TEST_CLANG@".lower()
|
|
test_clang = test_clang == "on" or test_clang == "true" or test_clang == "1"
|
|
|
|
if len(test_c_compiler) > 0:
|
|
config.cc = test_c_compiler
|
|
if len(test_c_compiler) > 0:
|
|
config.cxx = test_cxx_compiler
|
|
|
|
if test_clang:
|
|
config.cc = 'clang'
|
|
config.cxx = 'clang++'
|
|
|
|
# Support substitution of the tools and libs dirs with user parameters. This is
|
|
# used when we can't determine the tool dir at configuration time.
|
|
try:
|
|
config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
|
|
config.llvm_libs_dir = config.llvm_libs_dir % lit_config.params
|
|
except KeyError as e:
|
|
key, = e.args
|
|
lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
|
|
|
|
# Let the main config do the real work.
|
|
lit_config.load_config(config, "@LLDB_SOURCE_DIR@/lit/lit.cfg")
|