| 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,
|
|
|