diff options
| -rw-r--r-- | Jamroot.jam | 2 | ||||
| -rw-r--r-- | libadhocutil/unittests/Jamfile.jam | 6 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/Jamroot.jam b/Jamroot.jam index 2a45f4a..b4473a3 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -11,7 +11,7 @@ variant coverage : debug ;  project    : requirements  			<define>ICE_CPP11_MAPPING -			<cxxstd>17 +			<cxxstd>20  			<visibility>hidden  			<linkflags>"-Wl,-z,defs,--warn-once,--gc-sections"  			<variant>release:<lto>on diff --git a/libadhocutil/unittests/Jamfile.jam b/libadhocutil/unittests/Jamfile.jam index 8b1c3c1..aad8e24 100644 --- a/libadhocutil/unittests/Jamfile.jam +++ b/libadhocutil/unittests/Jamfile.jam @@ -45,11 +45,11 @@ run  	<library>..//adhocutil  	<library>stdc++fs  	<library>boost_utf -	-<cxxstd>17 -	<cxxstd>2a +	<cxxstd>17 +	-<cxxstd>20  	<implicit-dependency>lorem-ipsum  	: -	testCompileTimeFormatter20 +	testCompileTimeFormatter17  	;  run | 
