[bazel] Switch over to /DEBUG:FULL unconditionally (#8563)

This is faster everywhere.

Fixes #8517
This commit is contained in:
Austin Schuh
2026-01-14 20:15:42 -08:00
committed by GitHub
parent 1cbc25bc36
commit 0001ddc7ec

View File

@@ -521,3 +521,16 @@ index 5d0d40f..c6e7f94 100644
},
provides = [CcToolchainConfigInfo],
)
diff --git a/cc/private/toolchain/windows_cc_configure.bzl b/cc/private/toolchain/windows_cc_configure.bzl
index ad6cb86..9a39485 100644
--- a/cc/private/toolchain/windows_cc_configure.bzl
+++ b/cc/private/toolchain/windows_cc_configure.bzl
@@ -756,7 +756,7 @@ Fix this by installing the English language pack for the Visual Studio installat
"%{msvc_dumpbin_path_" + target_arch + "}": build_tools["DUMPBIN"],
"%{msvc_parse_showincludes_" + target_arch + "}": repr(support_parse_showincludes),
"%{dbg_mode_debug_flag_" + target_arch + "}": "/DEBUG:FULL" if support_debug_fastlink else "/DEBUG",
- "%{fastbuild_mode_debug_flag_" + target_arch + "}": "/DEBUG:FASTLINK" if support_debug_fastlink else "/DEBUG",
+ "%{fastbuild_mode_debug_flag_" + target_arch + "}": "/DEBUG:FULL" if support_debug_fastlink else "/DEBUG",
}
return msvc_vars