2013-08-07 23:09:10 +00:00
|
|
|
import sys
|
|
|
|
|
2009-09-22 07:38:33 +00:00
|
|
|
## Autogenerated by LLVM/Clang configuration.
|
|
|
|
# Do not edit!
|
2013-05-04 07:36:23 +00:00
|
|
|
config.host_triple = "@LLVM_HOST_TRIPLE@"
|
2012-06-28 00:16:51 +00:00
|
|
|
config.target_triple = "@TARGET_TRIPLE@"
|
2009-09-22 07:38:33 +00:00
|
|
|
config.llvm_src_root = "@LLVM_SOURCE_DIR@"
|
|
|
|
config.llvm_obj_root = "@LLVM_BINARY_DIR@"
|
|
|
|
config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
|
2012-06-28 00:16:51 +00:00
|
|
|
config.llvm_shlib_dir = "@SHLIBDIR@"
|
|
|
|
config.llvm_shlib_ext = "@SHLIBEXT@"
|
2014-01-22 21:52:35 +00:00
|
|
|
config.llvm_exe_ext = "@EXEEXT@"
|
2011-06-16 21:48:57 +00:00
|
|
|
config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"
|
2010-06-12 16:21:19 +00:00
|
|
|
config.python_executable = "@PYTHON_EXECUTABLE@"
|
2012-06-28 00:16:51 +00:00
|
|
|
config.ocamlopt_executable = "@OCAMLOPT@"
|
2010-11-29 00:20:09 +00:00
|
|
|
config.enable_shared = @ENABLE_SHARED@
|
2011-06-23 17:52:36 +00:00
|
|
|
config.enable_assertions = @ENABLE_ASSERTIONS@
|
2012-02-16 06:28:33 +00:00
|
|
|
config.targets_to_build = "@TARGETS_TO_BUILD@"
|
|
|
|
config.llvm_bindings = "@LLVM_BINDINGS@"
|
2012-05-17 21:07:47 +00:00
|
|
|
config.host_os = "@HOST_OS@"
|
|
|
|
config.host_arch = "@HOST_ARCH@"
|
2012-11-21 20:38:26 +00:00
|
|
|
config.llvm_use_intel_jitevents = "@LLVM_USE_INTEL_JITEVENTS@"
|
2013-03-26 08:27:39 +00:00
|
|
|
config.llvm_use_sanitizer = "@LLVM_USE_SANITIZER@"
|
2013-04-23 10:17:34 +00:00
|
|
|
config.have_zlib = "@HAVE_LIBZ@"
|
2014-08-08 15:00:12 +00:00
|
|
|
config.enable_ffi = "@LLVM_ENABLE_FFI@"
|
2009-09-22 07:38:33 +00:00
|
|
|
|
2010-11-27 13:10:11 +00:00
|
|
|
# Support substitution of the tools_dir with user parameters. This is
|
|
|
|
# used when we can't determine the tool dir at configuration time.
|
|
|
|
try:
|
2013-08-09 16:22:05 +00:00
|
|
|
config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
|
2014-01-02 19:47:45 +00:00
|
|
|
config.llvm_shlib_dir = config.llvm_shlib_dir % lit_config.params
|
2013-08-07 23:09:10 +00:00
|
|
|
except KeyError:
|
|
|
|
e = sys.exc_info()[1]
|
2010-11-27 13:10:11 +00:00
|
|
|
key, = e.args
|
2013-08-09 16:22:05 +00:00
|
|
|
lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
|
2010-11-27 13:10:11 +00:00
|
|
|
|
2009-09-22 07:38:33 +00:00
|
|
|
# Let the main config do the real work.
|
2013-08-09 16:22:05 +00:00
|
|
|
lit_config.load_config(config, "@LLVM_SOURCE_DIR@/test/lit.cfg")
|