xref: /llvm-project/libcxx/test/configs/llvm-libc++-shared-clangcl.cfg.in (revision 0e8208eca1c316b7302de7803ab0d85a1dd77076)
1# This testing configuration handles running the test suite against LLVM's libc++
2# using a DLL, with Clang-cl on Windows.
3
4lit_config.load_config(config, '@CMAKE_CURRENT_BINARY_DIR@/cmake-bridge.cfg')
5
6dbg_include = ''
7runtime_library = '@CMAKE_MSVC_RUNTIME_LIBRARY@'
8if runtime_library == '' or runtime_library.endswith('DLL'):
9    fms_runtime_lib = 'dll'
10    cxx_lib = 'msvcprt'
11else:
12    fms_runtime_lib = 'static'
13    cxx_lib = 'libcpmt'
14
15if '@CMAKE_BUILD_TYPE@'.upper() == 'DEBUG':
16    dbg_include = ' -D_DEBUG -include set_windows_crt_report_mode.h'
17    fms_runtime_lib += '_dbg'
18    cxx_lib += 'd'
19
20config.substitutions.append(('%{flags}', '--driver-mode=g++'))
21config.substitutions.append(('%{compile_flags}',
22    '-fms-runtime-lib=' + fms_runtime_lib + ' -nostdinc++ -I %{target-include-dir} -I %{include-dir} -I %{libcxx-dir}/test/support -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_STDIO_ISO_WIDE_SPECIFIERS -DNOMINMAX' + dbg_include
23))
24config.substitutions.append(('%{link_flags}',
25    '-nostdlib -L %{lib-dir} -lc++ -l' + cxx_lib
26))
27config.substitutions.append(('%{exec}',
28    '%{executor} --execdir %T --prepend_env PATH=%{install-prefix}/bin -- '
29))
30
31import os, site
32site.addsitedir(os.path.join('@LIBCXX_SOURCE_DIR@', 'utils'))
33import libcxx.test.params, libcxx.test.config
34libcxx.test.config.configure(
35    libcxx.test.params.DEFAULT_PARAMETERS,
36    libcxx.test.features.DEFAULT_FEATURES,
37    config,
38    lit_config
39)
40