| Index: build/config/win/BUILD.gn
|
| diff --git a/build/config/win/BUILD.gn b/build/config/win/BUILD.gn
|
| index cdf6a73a2e8526d75444f63d1e497df392845fa0..03382f437dd9de3fad77a5a5bb08a2de014022fd 100644
|
| --- a/build/config/win/BUILD.gn
|
| +++ b/build/config/win/BUILD.gn
|
| @@ -317,12 +317,8 @@ config("windowed") {
|
| incremental_linking_on_switch = [ "/INCREMENTAL" ]
|
| incremental_linking_off_switch = [ "/INCREMENTAL:NO" ]
|
|
|
| -# MSVC2015's incremental linker complains about clang's .obj files sometimes,
|
| -# https://crbug.com/595702. Disable incremental linking with clang for now.
|
| -# TODO(thakis): Remove this once that problem is fixed, or when the win_clang
|
| -# bot uses lld.
|
| # Disable incremental linking for syzyasan
|
| -if (is_debug && !is_clang && !is_syzyasan) {
|
| +if (is_debug && !is_syzyasan) {
|
| default_incremental_linking_switch = incremental_linking_on_switch
|
| } else {
|
| default_incremental_linking_switch = incremental_linking_off_switch
|
|
|