2013-12-30 14:18:08 +08:00
|
|
|
import sys
|
|
|
|
|
2012-08-07 15:09:14 +08:00
|
|
|
## Autogenerated by LLVM/Clang configuration.
|
|
|
|
# Do not edit!
|
|
|
|
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@"
|
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@"
|
2012-08-07 15:09:14 +08:00
|
|
|
config.target_triple = "@TARGET_TRIPLE@"
|
2013-11-08 08:08:23 +08:00
|
|
|
config.have_libedit = "@HAVE_LIBEDIT@"
|
2012-08-07 15:09:14 +08: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:
|
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")
|