Remove -fvisibility=hidden and FORCE_STATIC.
[polly-mirror.git] / test / Unit / lit.site.cfg.in
blob0a7f536bd8161c8832c9aef7d48b57ab2c1720bb
1 @LIT_SITE_CFG_IN_HEADER@
3 import sys
5 config.llvm_src_root = "@LLVM_SOURCE_DIR@"
6 config.llvm_obj_root = "@LLVM_BINARY_DIR@"
7 config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
8 config.llvm_libs_dir = "@LLVM_LIBS_DIR@"
9 config.llvm_build_mode = "@LLVM_BUILD_MODE@"
10 config.polly_obj_root = "@POLLY_BINARY_DIR@"
11 config.polly_lib_dir = "@POLLY_LIB_DIR@"
12 config.enable_shared = @ENABLE_SHARED@
13 config.shlibdir = "@SHLIBDIR@"
14 config.target_triple = "@TARGET_TRIPLE@"
15 config.enable_gpgpu_codegen = "@GPU_CODEGEN@"
16 config.link_polly_into_tools = "@LINK_POLLY_INTO_TOOLS@"
18 # Support substitution of the tools_dir, libs_dirs, and build_mode with user
19 # parameters. This is used when we can't determine the tool dir at
20 # configuration time.
21 try:
22     config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
23     config.llvm_libs_dir = config.llvm_libs_dir % lit_config.params
24     config.llvm_build_mode = config.llvm_build_mode % lit_config.params
25 except KeyError:
26     e = sys.exc_info()[1]
27     key, = e.args
28     lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
30 # Let the main config do the real work.
31 lit_config.load_config(config, "@POLLY_SOURCE_DIR@/test/Unit/lit.cfg")