Removing any forcing of C++ levels.

This commit is contained in:
Edward Diener
2018-10-25 16:57:55 -04:00
parent adf2746626
commit f78f0a1d25

View File

@ -34,23 +34,23 @@ alias preprocessor : :
alias preprocessor alias preprocessor
: :
[ compile arithmetic.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile arithmetic.cpp ]
[ compile array.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile array.cpp ]
[ compile comparison.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile comparison.cpp ]
[ compile control.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile control.cpp ]
[ compile debug.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile debug.cpp ]
[ compile facilities.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile facilities.cpp ]
[ compile iteration.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile iteration.cpp ]
[ compile list.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile list.cpp ]
[ compile logical.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile logical.cpp ]
[ compile punctuation.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile punctuation.cpp ]
[ compile repetition.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile repetition.cpp ]
[ compile selection.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile selection.cpp ]
[ compile seq.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile seq.cpp ]
[ compile slot.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile slot.cpp ]
[ compile stringize.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile stringize.cpp ]
[ compile tuple.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile tuple.cpp ]
[ compile variadic.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile variadic.cpp ]
; ;
alias preprocessor_nvm alias preprocessor_nvm
@ -75,63 +75,63 @@ alias preprocessor_nvm
alias preprocessor_c alias preprocessor_c
: :
[ compile arithmetic.c [ compile arithmetic.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: arithmetic_c : arithmetic_c
] ]
[ compile array.c [ compile array.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: array_c : array_c
] ]
[ compile comparison.c [ compile comparison.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: comparison_c : comparison_c
] ]
[ compile control.c [ compile control.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: control_c : control_c
] ]
[ compile debug.c [ compile debug.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: debug_c : debug_c
] ]
[ compile facilities.c [ compile facilities.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: facilities_c : facilities_c
] ]
[ compile list.c [ compile list.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: list_c : list_c
] ]
[ compile logical.c [ compile logical.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: logical_c : logical_c
] ]
[ compile punctuation.c [ compile punctuation.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: punctuation_c : punctuation_c
] ]
[ compile selection.c [ compile selection.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: selection_c : selection_c
] ]
[ compile seq.c [ compile seq.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: seq_c : seq_c
] ]
[ compile slot.c [ compile slot.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: slot_c : slot_c
] ]
[ compile stringize.c [ compile stringize.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: stringize_c : stringize_c
] ]
[ compile tuple.c [ compile tuple.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: tuple_c : tuple_c
] ]
[ compile variadic.c [ compile variadic.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: variadic_c : variadic_c
] ]
; ;
@ -140,67 +140,54 @@ alias preprocessor_c_nvm
: :
[ compile arithmetic.c [ compile arithmetic.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: arithmetic_c_nvm : arithmetic_c_nvm
] ]
[ compile array.c [ compile array.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: array_c_nvm : array_c_nvm
] ]
[ compile comparison.c [ compile comparison.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: comparison_c_nvm : comparison_c_nvm
] ]
[ compile control.c [ compile control.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: control_c_nvm : control_c_nvm
] ]
[ compile debug.c [ compile debug.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: debug_c_nvm : debug_c_nvm
] ]
[ compile facilities.c [ compile facilities.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: facilities_c_nvm : facilities_c_nvm
] ]
[ compile list.c [ compile list.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: list_c_nvm : list_c_nvm
] ]
[ compile logical.c [ compile logical.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: logical_c_nvm : logical_c_nvm
] ]
[ compile selection.c [ compile selection.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: selection_c_nvm : selection_c_nvm
] ]
[ compile seq.c [ compile seq.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: seq_c_nvm : seq_c_nvm
] ]
[ compile slot.c [ compile slot.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: slot_c_nvm : slot_c_nvm
] ]
[ compile stringize.c [ compile stringize.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: stringize_c_nvm : stringize_c_nvm
] ]
[ compile tuple.c [ compile tuple.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: tuple_c_nvm : tuple_c_nvm
] ]
; ;
@ -222,9 +209,9 @@ alias preprocessor_isempty : :
alias preprocessor_isempty alias preprocessor_isempty
: :
[ compile isempty.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile isempty.cpp ]
[ compile-fail isempty_variadic_standard_failure.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile-fail isempty_variadic_standard_failure.cpp : <define>BOOST_PP_VARIADICS=1 ]
[ compile-fail isempty_variadic_standard_failure2.cpp : <toolset>gcc:<cxxflags>-std=c++0x <toolset>clang-linux:<cxxflags>-std=c++0x ] [ compile-fail isempty_variadic_standard_failure2.cpp : <define>BOOST_PP_VARIADICS=1 ]
; ;
alias preprocessor_isempty_nvm alias preprocessor_isempty_nvm
@ -235,15 +222,15 @@ alias preprocessor_isempty_nvm
alias preprocessor_isempty_c alias preprocessor_isempty_c
: :
[ compile isempty.c [ compile isempty.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 :
: isempty_c : isempty_c
] ]
[ compile-fail isempty_variadic_standard_failure.c [ compile-fail isempty_variadic_standard_failure.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 : <define>BOOST_PP_VARIADICS=1
: isempty_variadic_standard_failure_c : isempty_variadic_standard_failure_c
] ]
[ compile-fail isempty_variadic_standard_failure2.c [ compile-fail isempty_variadic_standard_failure2.c
: <toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99 : <define>BOOST_PP_VARIADICS=1
: isempty_variadic_standard_failure2_c : isempty_variadic_standard_failure2_c
] ]
; ;
@ -252,7 +239,6 @@ alias preprocessor_isempty_c_nvm
: :
[ compile isempty.c [ compile isempty.c
: <define>BOOST_PP_VARIADICS=0 : <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99 <toolset>clang-linux:<cflags>-std=c99
: isempty_c_nvm : isempty_c_nvm
] ]
; ;