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

23 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-10-08 01:41:18 +02:00
@@ -2287,10 +2287,12 @@
2020-12-20 20:49:13 +01:00
set_config("LINKER_KIND", select_linker.KIND)
2021-10-08 01:41:18 +02:00
-@depends_if(select_linker, target, target_sysroot, target_multiarch_dir, c_compiler)
+@depends_if(select_linker, target, target_sysroot, target_multiarch_dir, c_compiler, host)
2021-06-02 20:41:13 +02:00
@imports("os")
2021-10-08 01:41:18 +02:00
-def linker_ldflags(linker, target, sysroot, multiarch_dir, c_compiler):
+def linker_ldflags(linker, target, sysroot, multiarch_dir, c_compiler, host):
2020-08-27 10:03:03 +02:00
flags = list((linker and linker.LINKER_FLAG) or [])
2021-03-24 10:59:27 +01:00
+ if host.cpu == "arm":
+ flags.append("-Wl,--no-keep-memory")
# rpath-link is irrelevant to wasm, see for more info https://github.com/emscripten-core/emscripten/issues/11076.
2021-10-08 01:41:18 +02:00
if sysroot.path and multiarch_dir and target.os != "WASI":
for d in ("lib", "usr/lib"):