Jonathan Wakely 747d6e
--- boost_1_66_0/tools/build/src/tools/gcc.jam~ 2017-12-13 23:56:50.000000000 +0000
Jonathan Wakely 747d6e
+++ boost_1_66_0/tools/build/src/tools/gcc.jam	2018-01-19 12:48:26.264755316 +0000
Petr Machata 197021
@@ -603,7 +603,7 @@ rule compile.fortran ( targets * : sourc
Petr Machata 197021
 
Petr Machata 197021
 actions compile.c++ bind PCH_FILE
Petr Machata 197021
 {
Petr Machata 197021
-    "$(CONFIG_COMMAND)" $(LANG) -ftemplate-depth-$(TEMPLATE_DEPTH) $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(PCH_FILE:D)" -I"$(INCLUDES)" -c -o "$(<:W)" "$(>:W)"
Petr Machata 197021
+    "$(CONFIG_COMMAND)" $(LANG) $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(PCH_FILE:D)" -I"$(INCLUDES)" -c -o "$(<:W)" "$(>:W)"
Petr Machata 197021
 }
Petr Machata 197021
 
Petr Machata 197021
 actions compile.c bind PCH_FILE
Petr Machata 197021
@@ -613,7 +613,7 @@ actions compile.c bind PCH_FILE
Petr Machata 197021
 
Petr Machata 197021
 actions compile.c++.preprocess bind PCH_FILE
Petr Machata 197021
 {
Petr Machata 197021
-    "$(CONFIG_COMMAND)" $(LANG) -ftemplate-depth-$(TEMPLATE_DEPTH) $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(PCH_FILE:D)" -I"$(INCLUDES)" "$(>:W)" -E >"$(<:W)"
Petr Machata 197021
+    "$(CONFIG_COMMAND)" $(LANG) $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(PCH_FILE:D)" -I"$(INCLUDES)" "$(>:W)" -E >"$(<:W)"
Petr Machata 197021
 }
Petr Machata 197021
 
Petr Machata 197021
 actions compile.c.preprocess bind PCH_FILE
Jonathan Wakely 747d6e
@@ -755,17 +755,17 @@ actions compile.c.pch
Jonathan Wakely 747d6e
 ###
Jonathan Wakely 747d6e
 
Jonathan Wakely 747d6e
 # Declare flags and action for compilation.
Jonathan Wakely 747d6e
-toolset.flags gcc.compile OPTIONS <optimization>off   : -O0 ;
Jonathan Wakely 747d6e
-toolset.flags gcc.compile OPTIONS <optimization>speed : -O3 ;
Jonathan Wakely 747d6e
-toolset.flags gcc.compile OPTIONS <optimization>space : -Os ;
Jonathan Wakely 747d6e
-
Jonathan Wakely 747d6e
-toolset.flags gcc.compile OPTIONS <inlining>off  : -fno-inline ;
Jonathan Wakely 747d6e
-toolset.flags gcc.compile OPTIONS <inlining>on   : -Wno-inline ;
Jonathan Wakely 747d6e
-toolset.flags gcc.compile OPTIONS <inlining>full : -finline-functions -Wno-inline ;
Jonathan Wakely 747d6e
-
Jonathan Wakely 747d6e
-toolset.flags gcc.compile OPTIONS <warnings>off : -w ;
Jonathan Wakely 747d6e
-toolset.flags gcc.compile OPTIONS <warnings>on  : -Wall ;
Jonathan Wakely 747d6e
-toolset.flags gcc.compile OPTIONS <warnings>all : -Wall -pedantic ;
Jonathan Wakely 747d6e
+toolset.flags gcc.compile OPTIONS <optimization>off   :  ;
Jonathan Wakely 747d6e
+toolset.flags gcc.compile OPTIONS <optimization>speed :  ;
Jonathan Wakely 747d6e
+toolset.flags gcc.compile OPTIONS <optimization>space :  ;
Jonathan Wakely 747d6e
+
Jonathan Wakely 747d6e
+toolset.flags gcc.compile OPTIONS <inlining>off  :  ;
Jonathan Wakely 747d6e
+toolset.flags gcc.compile OPTIONS <inlining>on   :  ;
Jonathan Wakely 747d6e
+toolset.flags gcc.compile OPTIONS <inlining>full :  ;
Jonathan Wakely 747d6e
+
Jonathan Wakely 747d6e
+toolset.flags gcc.compile OPTIONS <warnings>off :  ;
Jonathan Wakely 747d6e
+toolset.flags gcc.compile OPTIONS <warnings>on  :  ;
Jonathan Wakely 747d6e
+toolset.flags gcc.compile OPTIONS <warnings>all :  ;
Jonathan Wakely 747d6e
 toolset.flags gcc.compile OPTIONS <warnings-as-errors>on : -Werror ;
Jonathan Wakely 747d6e
 
Jonathan Wakely 747d6e
 toolset.flags gcc.compile OPTIONS <debug-symbols>on : -g ;