Index: build/config/compiler/BUILD.gn |
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn |
index 466b2b95000a68f3050fbd9f4fc5e657137ed1de..fbf6db6ee9313012fee6ac8594e960f05075bf41 100644 |
--- a/build/config/compiler/BUILD.gn |
+++ b/build/config/compiler/BUILD.gn |
@@ -1091,11 +1091,12 @@ |
# configs += [ "//build/config/compiler/optimize_max" ] |
# Shared settings for both "optimize" and "optimize_max" configs. |
-# IMPORTANT: On Windows "/O1" and "/O2" must go before the common flags. |
if (is_win) { |
common_optimize_on_cflags = [ |
- "/Ob2", # Both explicit and auto inlining. |
- "/Oy-", # Disable omitting frame pointers, must be after /O2. |
+ "/O2", |
+ "/Ob2", # both explicit and auto inlining. |
+ "/Oy-", # disable omitting frame pointers, must be after /o2. |
+ "/Os", # favor size over speed. |
] |
if (!is_asan) { |
common_optimize_on_cflags += [ |
@@ -1161,16 +1162,15 @@ |
# Default "optimization on" config. On Windows, this favors size over speed. |
config("optimize") { |
+ cflags = common_optimize_on_cflags |
+ ldflags = common_optimize_on_ldflags |
if (is_win) { |
- # Favor size over speed, /O1 must be before the common flags. The GYP |
- # build also specifies /Os and /GF but these are implied by /O1. |
- cflags = [ "/O1" ] + common_optimize_on_cflags + [ "/Oi" ] |
+ cflags += [ "/Os" ] # favor size over speed. |
} else if (is_android || is_ios) { |
- cflags = [ "-Os" ] + common_optimize_on_cflags # Favor size over speed. |
+ cflags += [ "-Os" ] # Favor size over speed. |
} else { |
- cflags = [ "-O2" ] + common_optimize_on_cflags |
- } |
- ldflags = common_optimize_on_ldflags |
+ cflags += [ "-O2" ] |
+ } |
} |
# Turn off optimizations. |
@@ -1202,11 +1202,11 @@ |
# optimization and link-time code generation which is very expensive and should |
# be used sparingly. |
config("optimize_max") { |
+ cflags = common_optimize_on_cflags |
ldflags = common_optimize_on_ldflags |
if (is_win) { |
- # Favor speed over size, /O2 must be before the common flags. The GYP |
- # build also specifies /Ot, /Oi, and /GF, but these are implied by /O2. |
- cflags = [ "/O2" ] + common_optimize_on_cflags |
+ cflags -= [ "/Os" ] |
+ cflags += [ "/Ot" ] # Favor speed over size. |
if (is_official_build) { |
# TODO(GYP): TODO(dpranke): Should these only be on in an official |
# build, or on all the time? For now we'll require official build so |
@@ -1223,7 +1223,7 @@ |
ldflags += [ "/LTCG" ] |
} |
} else { |
- cflags = [ "-O2" ] + common_optimize_on_cflags |
+ cflags += [ "-O2" ] |
} |
} |