Commit 4e86d25e authored by John Abd-El-Malek's avatar John Abd-El-Malek

Always use the 64 bit linker on Linux 32 bit builds.

Recent changes (merging PDFium) have pushed some binaries over the limit.

BUG=453844
R=thestig@chromium.org

Review URL: https://codereview.chromium.org/897163002

Cr-Commit-Position: refs/heads/master@{#314730}
parent 090bd6fb
......@@ -1588,6 +1588,12 @@
'sysroot%': '<(sysroot)',
'CXX%': '<(CXX)',
}],
# Use a 64-bit linker to avoid running out of address space. The
# buildbots should have a 64-bit kernel and a 64-bit libc installed.
['host_arch=="ia32" and target_arch=="ia32"', {
'linux_use_bundled_gold%': '1',
'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
}],
# All Chrome builds have breakpad symbols, but only process the
# symbols from official builds.
['(branding=="Chrome" and buildtype=="Official")', {
......@@ -1596,16 +1602,6 @@
# Omit unwind support in official release builds to save space. We
# can use breakpad for these builds.
'release_unwind_tables%': 0,
'conditions': [
# For official builds, use a 64-bit linker to avoid running out
# of address space. The buildbots should have a 64-bit kernel
# and a 64-bit libc installed.
['host_arch=="ia32" and target_arch=="ia32"', {
'linux_use_bundled_gold%': '1',
'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
}],
],
}],
],
}], # os_posix==1 and OS!="mac" and OS!="ios"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment