1
1
#
2
2
# This testing configuration runs the test suite using the libstdc++ Standard library.
3
3
#
4
- # The additional '--param libstdcxx-install-prefix =<PATH>', '--param libstdcxx-triple =<TRIPLE>' and
5
- # '--param libstdcxx-version =<VERSION>' lit parameters must be provided when invoking lit for the
4
+ # The additional '--param libstdcxx_install_prefix =<PATH>', '--param libstdcxx_triple =<TRIPLE>' and
5
+ # '--param libstdcxx_version =<VERSION>' lit parameters must be provided when invoking lit for the
6
6
# configuration to find the appropriate headers and library.
7
7
#
8
8
# For example:
9
9
#
10
- # $ ./libcxx/utils/libcxx-lit <BUILD> -sv libcxx/test/std --param libstdcxx-install-prefix =/opt/homebrew/Cellar/gcc/14.1.0_1 \
11
- # --param libstdcxx-version =14 \
12
- # --param libstdcxx-triple =aarch64-apple-darwin22
10
+ # $ ./libcxx/utils/libcxx-lit <BUILD> -sv libcxx/test/std --param libstdcxx_install_prefix =/opt/homebrew/Cellar/gcc/14.1.0_1 \
11
+ # --param libstdcxx_version =14 \
12
+ # --param libstdcxx_triple =aarch64-apple-darwin22
13
13
#
14
14
15
15
lit_config.load_config(config, '@CMAKE_CURRENT_BINARY_DIR@/cmake-bridge.cfg')
@@ -20,19 +20,19 @@ import libcxx.test.params, libcxx.test.config, libcxx.test.dsl
20
20
21
21
# Additional parameters for libstdc++
22
22
LIBSTDCXX_PARAMETERS = [
23
- libcxx.test.dsl.Parameter(name='libstdcxx-install-prefix ', type=str,
23
+ libcxx.test.dsl.Parameter(name='libstdcxx_install_prefix ', type=str,
24
24
actions=lambda path: [libcxx.test.dsl.AddSubstitution('%{libstdcxx-install-prefix}', path)],
25
25
help="""
26
26
The installation prefix where libstdc++ was installed. This is used to find the libstdc++ headers,
27
27
link against its built library, etc.
28
28
"""),
29
- libcxx.test.dsl.Parameter(name='libstdcxx-triple ', type=str,
29
+ libcxx.test.dsl.Parameter(name='libstdcxx_triple ', type=str,
30
30
actions=lambda triple: [libcxx.test.dsl.AddSubstitution('%{libstdcxx-triple}', triple)],
31
31
help="""
32
32
The target triple used for the target-specific include directory of libstdc++. This is used to find the
33
33
libstdc++ headers.
34
34
"""),
35
- libcxx.test.dsl.Parameter(name='libstdcxx-version ', type=str,
35
+ libcxx.test.dsl.Parameter(name='libstdcxx_version ', type=str,
36
36
actions=lambda version: [libcxx.test.dsl.AddSubstitution('%{libstdcxx-version}', version)],
37
37
help="""
38
38
The version of libstdc++. This is used to find the libstdc++ headers and library.
0 commit comments