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

Unified Diff: trunk/src/build/common.gypi

Issue 13091002: Revert 190623 "ChromeOS: Enable gold linker flags." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 9 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: trunk/src/build/common.gypi
===================================================================
--- trunk/src/build/common.gypi (revision 190643)
+++ trunk/src/build/common.gypi (working copy)
@@ -543,12 +543,18 @@
# linux_use_gold_binary: whether to use the binary checked into
# third_party/gold. Gold is not used for 32-bit linux builds
# as it runs out of address space.
- # linux_use_gold_flags: whether to use build flags that rely on gold.
['OS=="linux" and (target_arch=="x64" or target_arch=="arm")', {
'linux_use_gold_binary%': 1,
+ }, {
+ 'linux_use_gold_binary%': 0,
+ }],
+
+ # linux_use_gold_flags: whether to use build flags that rely on gold.
+ # On by default for x64 Linux. Temporarily off for ChromeOS as
+ # it failed on a buildbot.
+ ['OS=="linux" and target_arch=="x64" and chromeos==0', {
'linux_use_gold_flags%': 1,
}, {
- 'linux_use_gold_binary%': 0,
'linux_use_gold_flags%': 0,
}],
« 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