ChromeOS: Enable gold linker flags.

Review URL: https://chromiumcodereview.appspot.com/12383041

git-svn-id: http://src.chromium.org/svn/trunk/src/build@190623 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
thestig@chromium.org 2013-03-26 09:49:37 +00:00
Родитель 00b7e4e358
Коммит 123f1ba69c
1 изменённых файлов: 2 добавлений и 8 удалений

Просмотреть файл

@ -543,18 +543,12 @@
# 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,
}],