Use gold for ARM linux builds.
There is an issue using ld.bfd to cross build ARM chrome on linux (it seems to not honor --sysroot correctly) so make sure we use gold by default. BUG=191499 Review URL: https://chromiumcodereview.appspot.com/12859002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188282 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user