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