Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2527)

Unified Diff: build/config/win/BUILD.gn

Issue 1945063003: clang/win: Reenable incremental linking. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698