lit.site.cfg.in revision 38d439fb13ae465d53767c1c912abf40e64d6ee4
1## Autogenerated by LLVM/Clang configuration.
2# Do not edit!
3config.llvm_src_root = "@LLVM_SOURCE_DIR@"
4config.llvm_obj_root = "@LLVM_BINARY_DIR@"
5config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
6config.llvmgcc_dir = "@LLVMGCCDIR@"
7config.llvm_build_mode = "@LLVM_BUILD_MODE@"
8config.enable_shared = @ENABLE_SHARED@
9config.shlibdir = "@SHLIBDIR@"
10config.shlibpath_var = "@SHLIBPATH_VAR@"
11
12# Support substitution of the tools_dir and build_mode with user parameters.
13# This is used when we can't determine the tool dir at configuration time.
14try:
15    config.llvm_tools_dir = config.llvm_tools_dir % lit.params
16    config.llvm_build_mode = config.llvm_build_mode % lit.params
17except KeyError,e:
18    key, = e.args
19    lit.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
20
21# Let the main config do the real work.
22lit.load_config(config, "@LLVM_SOURCE_DIR@/test/Unit/lit.cfg")
23