foxgirl-linux/deb_patches/armhf-reduce-linker-memory-use.patch

29 lines
1.1 KiB
Diff
Raw Normal View History

Description: starting with firefox 66, armhf builds on Launchpad frequently
fail with "/usr/bin/ld: final link failed: memory exhausted" when linking
libxul.so. This is an attempt to reduce the memory used by ld.
Author: Olivier Tilloy <olivier.tilloy@canonical.com>
--- a/build/moz.configure/toolchain.configure
+++ b/build/moz.configure/toolchain.configure
2021-03-24 10:59:27 +01:00
@@ -2418,8 +2418,8 @@
2020-12-20 20:49:13 +01:00
set_config("LINKER_KIND", select_linker.KIND)
2021-03-24 10:59:27 +01:00
-@depends_if(select_linker, macos_sdk, sysroot_path, multiarch_dir)
-def linker_ldflags(linker, macos_sdk, sysroot_path, multiarch_dir):
+@depends_if(select_linker, macos_sdk, sysroot_path, multiarch_dir, host)
+def linker_ldflags(linker, macos_sdk, sysroot_path, multiarch_dir, host):
2020-08-27 10:03:03 +02:00
flags = list((linker and linker.LINKER_FLAG) or [])
if macos_sdk:
2020-12-20 20:49:13 +01:00
if linker and linker.KIND == "ld64":
2021-03-24 10:59:27 +01:00
@@ -2427,6 +2427,9 @@
else:
2020-12-20 20:49:13 +01:00
flags.append("-Wl,--sysroot=%s" % macos_sdk)
2021-03-24 10:59:27 +01:00
+ if host.cpu == "arm":
+ flags.append("-Wl,--no-keep-memory")
+
if sysroot_path and multiarch_dir:
# Non-Debian-patched binutils linkers (both BFD and gold) don't lookup
# in multi-arch directories.