2016-04-16 15:01:42 +08:00
|
|
|
@LIT_SITE_CFG_IN_HEADER@
|
|
|
|
|
2013-12-30 14:18:08 +08:00
|
|
|
import sys
|
|
|
|
|
2012-08-07 15:09:14 +08:00
|
|
|
config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
|
|
|
|
config.llvm_libs_dir = "@LLVM_LIBS_DIR@"
|
|
|
|
config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"
|
2012-08-07 16:33:04 +08:00
|
|
|
config.clang_tools_binary_dir = "@CLANG_TOOLS_BINARY_DIR@"
|
2014-01-19 19:19:07 +08:00
|
|
|
config.clang_tools_dir = "@CLANG_TOOLS_DIR@"
|
2014-06-27 00:32:26 +08:00
|
|
|
config.python_executable = "@PYTHON_EXECUTABLE@"
|
2012-08-07 15:09:14 +08:00
|
|
|
config.target_triple = "@TARGET_TRIPLE@"
|
|
|
|
|
|
|
|
# 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-01-19 20:07:45 +08:00
|
|
|
config.clang_tools_dir = config.clang_tools_dir % lit_config.params
|
2013-08-10 02:49:22 +08:00
|
|
|
config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
|
|
|
|
config.llvm_libs_dir = config.llvm_libs_dir % lit_config.params
|
2013-12-30 14:18:08 +08:00
|
|
|
except KeyError:
|
|
|
|
e = sys.exc_info()[1]
|
2012-08-07 15:09:14 +08:00
|
|
|
key, = e.args
|
2013-08-10 02:49:22 +08:00
|
|
|
lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
|
2012-08-07 15:09:14 +08:00
|
|
|
|
|
|
|
# Let the main config do the real work.
|
2013-08-10 02:49:22 +08:00
|
|
|
lit_config.load_config(config, "@CLANG_TOOLS_SOURCE_DIR@/test/lit.cfg")
|