We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7ff5fa commit 974201dCopy full SHA for 974201d
test/CXX/CXX-modules-fixture/SConstruct
@@ -1,4 +1,8 @@
1
env = Environment()
2
+try:
3
+ env.Tool(ARGUMENTS["toolset"])
4
+except KeyError:
5
+ pass
6
7
env.Append(CXXFLAGS = ["-std=c++20"])
8
env['CXXMODULEPATH'] = "cxx-scons-modules"
test/CXX/CXXMODULES-gcc.py
@@ -4,7 +4,7 @@
test.dir_fixture("CXX-modules-fixture")
-test.run(arguments = ".")
+test.run(arguments = ". toolset=g++")
9
test.pass_test()
10
0 commit comments