Update BUILD.gn

This commit is contained in:
Alexander David Frick 2022-09-04 10:09:21 -05:00 committed by GitHub
parent 648a13b66f
commit 4bbd841bc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2061,7 +2061,7 @@ config("optimize") {
} else { } else {
# PGO requires all translation units to be compiled with /O2. The actual # PGO requires all translation units to be compiled with /O2. The actual
# optimization level will be decided based on the profiling data. # optimization level will be decided based on the profiling data.
cflags = [ "/O2" ] + common_optimize_on_cflags + [ "/Oi" ] cflags = [ "/O3" ] + common_optimize_on_cflags + [ "/Oi" ]
} }
} else if (optimize_for_size) { } else if (optimize_for_size) {
# Favor size over speed. # Favor size over speed.