aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gn/BUILD.gn3
1 files changed, 1 insertions, 2 deletions
diff --git a/gn/BUILD.gn b/gn/BUILD.gn
index 4d6ada7040..28b1aec1b7 100644
--- a/gn/BUILD.gn
+++ b/gn/BUILD.gn
@@ -39,7 +39,6 @@ config("default") {
if (is_win) {
cflags += [
- "/FS", # Preserve previous PDB behavior.
"/bigobj", # Some of our files are bigger than the regular limits.
"/WX", # Treat warnings as errors.
"/utf-8", # Set Source and Executable character sets to UTF-8.
@@ -381,7 +380,7 @@ config("debug_symbols") {
"-funwind-tables", # Helps make in-process backtraces fuller.
]
} else if (is_win) {
- cflags = [ "/Zi" ]
+ cflags = [ "/Z7" ]
ldflags = [ "/DEBUG" ]
} else {
cflags = [ "-g" ]