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.llvm_build_mode = "@LLVM_BUILD_MODE@" 7config.enable_shared = @ENABLE_SHARED@ 8config.shlibdir = "@SHLIBDIR@" 9config.shlibpath_var = "@SHLIBPATH_VAR@" 10 11# Support substitution of the tools_dir and build_mode with user parameters. 12# This is used when we can't determine the tool dir at configuration time. 13try: 14 config.llvm_tools_dir = config.llvm_tools_dir % lit.params 15 config.llvm_build_mode = config.llvm_build_mode % lit.params 16except KeyError,e: 17 key, = e.args 18 lit.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key)) 19 20# Let the main config do the real work. 21lit.load_config(config, "@LLVM_SOURCE_DIR@/test/Unit/lit.cfg") 22