2016-07-23 20:44:14 +00:00
|
|
|
@LIT_SITE_CFG_IN_HEADER@
|
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
import sys
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
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@"
|
2014-11-24 09:15:30 +00:00
|
|
|
config.llvm_shlib_dir = "@SHLIBDIR@"
|
|
|
|
config.llvm_plugin_ext = "@LLVM_PLUGIN_EXT@"
|
2011-02-20 13:06:31 +00:00
|
|
|
config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"
|
2009-10-14 18:03:49 +00:00
|
|
|
config.clang_obj_root = "@CLANG_BINARY_DIR@"
|
2017-04-20 21:20:51 +00:00
|
|
|
config.clang_src_dir = "@CLANG_SOURCE_DIR@"
|
2014-11-24 09:15:30 +00:00
|
|
|
config.clang_tools_dir = "@CLANG_TOOLS_DIR@"
|
|
|
|
config.host_triple = "@LLVM_HOST_TRIPLE@"
|
2009-11-04 15:04:32 +00:00
|
|
|
config.target_triple = "@TARGET_TRIPLE@"
|
2017-12-18 20:11:37 +00:00
|
|
|
config.host_cxx = "@CMAKE_CXX_COMPILER@"
|
2013-04-08 18:45:10 +00:00
|
|
|
config.llvm_use_sanitizer = "@LLVM_USE_SANITIZER@"
|
2017-04-16 16:02:28 +00:00
|
|
|
config.have_zlib = @HAVE_LIBZ@
|
|
|
|
config.clang_arcmt = @CLANG_ENABLE_ARCMT@
|
2017-01-02 19:18:08 +00:00
|
|
|
config.clang_default_cxx_stdlib = "@CLANG_DEFAULT_CXX_STDLIB@"
|
2017-04-16 16:02:28 +00:00
|
|
|
config.clang_staticanalyzer = @CLANG_ENABLE_STATIC_ANALYZER@
|
|
|
|
config.clang_staticanalyzer_z3 = "@CLANG_ANALYZER_WITH_Z3@"
|
|
|
|
config.clang_examples = @CLANG_BUILD_EXAMPLES@
|
2014-11-24 09:15:30 +00:00
|
|
|
config.enable_shared = @ENABLE_SHARED@
|
2017-04-16 16:02:28 +00:00
|
|
|
config.enable_backtrace = @ENABLE_BACKTRACES@
|
2013-12-22 00:07:40 +00:00
|
|
|
config.host_arch = "@HOST_ARCH@"
|
2017-12-18 20:11:37 +00:00
|
|
|
config.enable_abi_breaking_checks = "@LLVM_ENABLE_ABI_BREAKING_CHECKS@"
|
|
|
|
config.python_executable = "@PYTHON_EXECUTABLE@"
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-11-18 14:59:57 +00:00
|
|
|
# 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:
|
2014-11-24 09:15:30 +00:00
|
|
|
config.clang_tools_dir = config.clang_tools_dir % lit_config.params
|
2013-12-22 00:07:40 +00:00
|
|
|
config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
|
2014-11-24 09:15:30 +00:00
|
|
|
config.llvm_shlib_dir = config.llvm_shlib_dir % lit_config.params
|
2013-12-22 00:07:40 +00:00
|
|
|
config.llvm_libs_dir = config.llvm_libs_dir % lit_config.params
|
|
|
|
except KeyError:
|
|
|
|
e = sys.exc_info()[1]
|
2009-11-18 14:59:57 +00:00
|
|
|
key, = e.args
|
2013-12-22 00:07:40 +00:00
|
|
|
lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
|
2009-11-18 14:59:57 +00:00
|
|
|
|
2017-12-18 20:11:37 +00:00
|
|
|
@LIT_SITE_CFG_IN_FOOTER@
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
# Let the main config do the real work.
|
2017-12-18 20:11:37 +00:00
|
|
|
lit_config.load_config(config, "@CLANG_SOURCE_DIR@/test/lit.cfg.py")
|