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

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

Issue 1947103002: Fix LTO on Linux by not specifying a blacklist. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gyp 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 | « build/common.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/compiler/BUILD.gn
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
index 229e394adb48a2aa86bdf768660390045763b1d9..2f48477b9750977c999af1c6408cdb762ebba269 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -445,14 +445,7 @@ config("compiler") {
# TODO(pcc): Make these flags work correctly with CFI.
if (!is_cfi) {
- cflags += [
- "-fwhole-program-vtables",
-
- # TODO(pcc): Remove this flag once the upstream interface change
- # (http://reviews.llvm.org/D18635) lands.
- "-fwhole-program-vtables-blacklist=" +
- rebase_path("//tools/cfi/blacklist.txt", root_build_dir),
- ]
+ cflags += [ "-fwhole-program-vtables" ]
ldflags += [ "-fwhole-program-vtables" ]
}
}
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698