Home
last modified time | relevance | path

Searched full:cxxstd (Results 1 – 25 of 50) sorted by relevance

12

/third_party/boost/libs/beast/
Dazure-pipelines.yml27 ./b2 libs/beast/test//run-fat-tests toolset=gcc coverage=on link=static cxxstd=11 -j2
46 CXXSTD: 17
54 CXXSTD: 11
62 CXXSTD: 11
73 CXXSTD: 11
82 CXXSTD: 11
90 CXXSTD: 17
98 CXXSTD: 11
109 CXXSTD: 11
118 CXXSTD: 11
[all …]
/third_party/boost/libs/function/test/
DJamfile.v214 run function_test.cpp : : : <rtti>off <toolset>gcc-4.4.7,<cxxstd>0x:<build>no : function_test_no_rt…
50 run test_mixed_cxxstd.cpp mixed_cxxstd/<cxxstd>98 : : : <link>shared : mixed_cxxstd_shared_98 ;
51 run test_mixed_cxxstd.cpp mixed_cxxstd/<cxxstd>98 : : : <link>static : mixed_cxxstd_static_98 ;
53 run test_mixed_cxxstd.cpp mixed_cxxstd/<cxxstd>0x : : : <link>shared : mixed_cxxstd_shared_0x ;
54 run test_mixed_cxxstd.cpp mixed_cxxstd/<cxxstd>0x : : : <link>static : mixed_cxxstd_static_0x ;
56 local check14 = [ check-target-builds mixed_cxxstd/<cxxstd>14 : : <build>no ] ;
58 run test_mixed_cxxstd.cpp mixed_cxxstd/<cxxstd>14 : : : <link>shared $(check14) : mixed_cxxstd_shar…
59 run test_mixed_cxxstd.cpp mixed_cxxstd/<cxxstd>14 : : : <link>static $(check14) : mixed_cxxstd_stat…
66 run test_return_function.cpp return_function/<cxxstd>98 : : : <link>shared : return_function_shared…
67 run test_return_function.cpp return_function/<cxxstd>98 : : : <link>static : return_function_static…
[all …]
/third_party/boost/tools/build/src/tools/
Dclang.jam38 local rule cxxstd-flags ( toolset : condition * : options * )
52 rule init-cxxstd-flags ( toolset : condition * : version )
54 local cxxstd = [ feature.values <cxxstd> ] ;
55 local dialects = [ feature.values <cxxstd-dialect> ] ;
65 cxxstd-flags $(toolset) : $(condition)/<cxxstd>latest/<cxxstd-dialect>iso : -std=c++$(std) ;
66 cxxstd-flags $(toolset) : $(condition)/<cxxstd>latest/<cxxstd-dialect>gnu : -std=gnu++$(std) ;
67cxxstd-flags $(toolset) : $(condition)/<cxxstd>latest/<cxxstd-dialect>$(dialects) : -std=c++$(std)…
Dembarcadero.jam161 <cxxstd>98
162 <cxxstd>03
163 <cxxstd>0x
164 <cxxstd>11
165 <cxxstd>1y
166 <cxxstd>14
167 <cxxstd>1z
168 <cxxstd>17
169 <cxxstd>2a
170 <cxxstd>20
[all …]
Dcray.jam228 feature.set-default cxxstd-dialect : gnu ;
534 set-cxxstd-procedure $(targets) : $(sources) : $(properties) ;
535 set-cxxstd-dialect-procedure $(targets) : $(sources) : $(properties) ;
565 set-cxxstd-procedure $(targets) : $(sources) : $(properties) ;
566 set-cxxstd-dialect-procedure $(targets) : $(sources) : $(properties) ;
623 set-cxxstd-procedure $(targets) : $(sources) : $(properties) ;
624 set-cxxstd-dialect-procedure $(targets) : $(sources) : $(properties) ;
700 rule set-cxxstd-procedure ( targets * : sources * : properties * )
703 # Translate '<cxxstd>' into a standard recognized by CCE.
707 local cxxstd = [ feature.get-values cxxstd : $(properties) ] ;
[all …]
Dpgi.jam51 flags pgi.compile.c++ OPTIONS <cxxstd>98 : -std=c++03 ;
52 flags pgi.compile.c++ OPTIONS <cxxstd>03 : -std=c++03 ;
53 flags pgi.compile.c++ OPTIONS <cxxstd>0x : -std=c++11 ;
54 flags pgi.compile.c++ OPTIONS <cxxstd>11 : -std=c++11 ;
55 flags pgi.compile.c++ OPTIONS <cxxstd>1y : -std=c++14 ;
56 flags pgi.compile.c++ OPTIONS <cxxstd>14 : -std=c++14 ;
57 flags pgi.compile.c++ OPTIONS <cxxstd>1z : -std=c++17 ;
58 flags pgi.compile.c++ OPTIONS <cxxstd>17 : -std=c++17 ;
59 flags pgi.compile.c++ OPTIONS <cxxstd>2a : -std=c++17 ;
60 flags pgi.compile.c++ OPTIONS <cxxstd>20 : -std=c++17 ;
[all …]
Dxlcpp.jam109 flags xlcpp.compile.c++ OPTIONS <cxxstd>98 : -std=c++03 ;
110 flags xlcpp.compile.c++ OPTIONS <cxxstd>03 : -std=c++03 ;
111 flags xlcpp.compile.c++ OPTIONS <cxxstd>0x : -std=c++11 ;
112 flags xlcpp.compile.c++ OPTIONS <cxxstd>11 : -std=c++11 ;
113 flags xlcpp.compile.c++ OPTIONS <cxxstd>1y : -std=c++1y ;
114 flags xlcpp.compile.c++ OPTIONS <cxxstd>14 : -std=c++1y ;
115 flags xlcpp.compile.c++ OPTIONS <cxxstd>1z : -std=c++1y ;
116 flags xlcpp.compile.c++ OPTIONS <cxxstd>17 : -std=c++1y ;
117 flags xlcpp.compile.c++ OPTIONS <cxxstd>2a : -std=c++1y ;
118 flags xlcpp.compile.c++ OPTIONS <cxxstd>20 : -std=c++1y ;
[all …]
Dgcc.jam357 init-cxxstd-flags $(condition) : $(version) ;
473 local rule cxxstd-flags ( * )
479 local cxxstd = [ feature.values <cxxstd> ] ;
480 local dialects = [ feature.values <cxxstd-dialect> ] ;
481 .cxxstd-dialects = [ set.difference $(dialects) : gnu iso ] ;
483 for local std in [ set.difference $(cxxstd) : latest ]
485 cxxstd-flags <cxxstd>$(std)/<cxxstd-dialect>iso : -std=c++$(std) ;
486 cxxstd-flags <cxxstd>$(std)/<cxxstd-dialect>gnu : -std=gnu++$(std) ;
489 cxxstd-flags <cxxstd>$(std)/<cxxstd-dialect>$(.cxxstd-dialects) : -std=c++$(std) ;
499 local rule init-cxxstd-flags ( condition * : version )
[all …]
/third_party/boost/tools/build/src/tools/features/
Dcxxstd-feature.jam10 [[bbv2.builtin.features.cxxstd]]`cxxstd`::
25 NOTE: Please consult the toolset specific documentation for which `cxxstd`
30 feature.feature cxxstd
36 [[bbv2.builtin.features.cxxstd-dialect]]`cxxstd-dialect`::
37 *Subfeature of* `cxxstd`
48 feature.subfeature cxxstd : dialect
/third_party/boost/libs/program_options/ci/
Dbuild.sh15 if [[ -z "$CXXSTD" ]]; then
16 CXXSTD=03
19 $BOOST_ROOT/b2 . toolset=$TOOLSET cxxstd=$CXXSTD $CXXFLAGS $DEFINES $LINKFLAGS $TESTFLAGS $B2_ADDRE…
Dcppcheck.sh15 if [[ -z "$CXXSTD" ]]; then
16 CXXSTD=03
34 ~/cppcheck/bin/cppcheck -I. --std=c++$CXXSTD --enable=all --error-exitcode=1 \
Dmingw.bat35 …"cd %CD:\=/% && ./b2 libs/%SELF% toolset=gcc-%FLAVOR% cxxstd=%CXXSTD% %CXXFLAGS% %DEFINES% %B2_ADD…
/third_party/boost/libs/poly_collection/example/
DJamfile.v211 <cxxstd>11
16 : <cxxstd>14
29 : <cxxstd>14
48 : <cxxstd>14
/third_party/boost/libs/contract/build/
Dboost_contract_build.jam12 # cxxstd=03,11,14,17,... specify C++ standard version
37 # [test]$ bjam cxxstd=11 public_function-smoke
38 # [example]$ bjam cxxstd=11 features-introduction
40 # [test]$ bjam cxxstd=11 -q toolset=msvc,gcc,clang link=static,header
41 # [test]$ bjam cxxstd=11 -q toolset=msvc,gcc,clang bc_hdr=only
44 # [test]$ time bjam cxxstd=11 -q bc_no=se,x
47 # [test]$ rm -f ../../../bin.v2/project-cache.jam ; bjam cxxstd=11 -q toolset=msvc,gcc,clang li…
/third_party/boost/libs/beast/tools/
Dbuild-and-test.sh107 cxxstd=$CXXSTD \
119 cxxstd=$CXXSTD \
128 cxxstd=$CXXSTD \
/third_party/boost/libs/parameter/test/
DJamfile.v2498 # Python fails for clang on linux with cxxstd set to 14
501 <cxxstd>14
507 # Python fails for clang on linux with cxxstd set to 1z
510 <cxxstd>1z
525 # Python fails for mingw compilers with cxxstd set to 11 or higher
536 # Python fails for clang-linux compilers with cxxstd set to 11 or higher
572 <cxxstd>03
598 <cxxstd>98
616 <cxxstd>03
681 <cxxstd>98
[all …]
/third_party/boost/libs/algorithm/example/
DJamfile.v223 exe is_palindrome_example : is_palindrome_example.cpp : <cxxstd>11 ;
24 exe is_partitioned_until_example : is_partitioned_until_example.cpp : <cxxstd>11 ;
25 exe apply_permutation_example : apply_permutation_example.cpp : <cxxstd>11 ;
/third_party/boost/libs/histogram/
DJamfile10 # Generate coverage data: b2 cxxstd=latest coverage=on test//all
11 # Test without exceptions and rtti: b2 cxxstd=latest exception-handling=off rtti=off test//minim…
12 # Test with sanitizers: b2 toolset=clang cxxstd=latest histogram_ubasan test
DCONTRIBUTING.md36 … the project folder, do `b2 cxxstd=latest warnings-as-errors=on test`. You can also test the examp…
47 …de with gcc-8 and coverage instrumentation enabled, do `b2 toolset=gcc-8 cxxstd=latest coverage=on…
/third_party/boost/libs/smart_ptr/test/
DJamfile326 run abi_test_main.cpp abi_test_mt/<cxxstd>0x : : : <cxxstd>98 : abi_test_03_11 ;
327 run abi_test_main.cpp abi_test_mt/<cxxstd>98 : : : <cxxstd>0x : abi_test_11_03 ;
334 run get_deleter_test.cpp : : : <rtti>off <toolset>gcc-4.4.7,<cxxstd>0x:<build>no : get_deleter_test…
335 run get_deleter_test2.cpp : : : <rtti>off <toolset>gcc-4.4.7,<cxxstd>0x:<build>no : get_deleter_tes…
336 run get_deleter_test3.cpp : : : <rtti>off <toolset>gcc-4.4.7,<cxxstd>0x:<build>no : get_deleter_tes…
/third_party/boost/libs/predef/
Dazure-pipelines.yml39 B2_ARGS: 'cxxstd=03,11,14,17,2a cxxstd-dialect=gnu'
45 B2_ARGS: 'cxxstd=03,11,14,17,2a cxxstd-dialect=iso'
269 B2_ARGS: address-model=32,64 cxxstd=14,latest
/third_party/boost/libs/multiprecision/config/
Dhas_is_constant_evaluated.cpp9 // Currently only GCC 9 and Clang 9 and <cxxflags>-std=c++2a or b2 cxxstd=2a
15 // boost\libs\multiprecision\config>b2 has_is_constant_evaluated toolset=clang-win-9.0.0 cxxstd=2a …
/third_party/boost/libs/gil/
DCONTRIBUTING.md359 ../../b2 cxxstd=11 test/core
365 ./b2 cxxstd=11 libs/gil/test/io
366 ./b2 cxxstd=11 libs/gil/test/numeric
367 ./b2 cxxstd=11 libs/gil/test/toolbox
373 ./b2 cxxstd=11 libs/gil/test/io//simple
376 **TIP:** Pass `b2` feature `cxxstd=11,14,17,2a` to request compilation for
404 [CMakeLists.txt](CMakeLists.txt) defaults to C++11, pass the default `cxxstd=11` to `b2`:
408 ./b2 variant=debug,release cxxstd=11 --with-filesystem stage
414 …./b2 variant=debug,release address-model=32,64 cxxstd=11 --layout=versioned --with-filesystem stage
417 If you wish to build tests using different C++ standard version, then adjust the `cxxstd` according…
/third_party/boost/boost/config/compiler/
Dcray.hpp39 // b2 -j 8 toolset=cray cxxstd=03 cxxstd=11 cxxstd=14 cxxstd-dialect=gnu linkflags=-lrt
41 // Note: Using 'cxxstd-dialect=iso' is not supported at this time (the
/third_party/boost/tools/build/test/
DTestToolset.py77 if "cxxstd=latest" in properties:
78 path += "/cxxstd-latest-iso"

12