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

Unified Diff: build/common.gypi

Issue 12859002: Use gold for ARM linux builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index dbed69b0d3b1406b90e9e2f78270754aa23547e5..8c6f202fd8c171f095525810da3396399158ffb0 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -547,8 +547,9 @@
}],
# linux_use_gold_binary: whether to use the binary checked into
- # third_party/gold.
- ['OS=="linux" and target_arch=="x64"', {
+ # third_party/gold. Gold is not used for 32-bit linux builds
+ # as it runs out of address space.
+ ['OS=="linux" and (target_arch=="x64" or target_arch=="arm")', {
'linux_use_gold_binary%': 1,
}, {
'linux_use_gold_binary%': 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