From 3a2c53b1c46a9fd0a955ebb04026a1912d8d2002 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Fri, 20 Sep 2019 13:05:01 +0200 Subject: extra/thunderbird: trying to handle out-of-memory and resource consumption issues --- extra/thunderbird/PKGBUILD | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'extra/thunderbird') diff --git a/extra/thunderbird/PKGBUILD b/extra/thunderbird/PKGBUILD index 33e3f300..b7adf6b6 100644 --- a/extra/thunderbird/PKGBUILD +++ b/extra/thunderbird/PKGBUILD @@ -9,3 +9,20 @@ eval "$( s/ac_add_options --enable-linker=gold/ac_add_options --enable-linker=bfd/ ' )" + +# from VoidLinux, avoid excessive debug symbols in rust leading +# to out-of-memory situations +eval "$( + declare -f build | \ + sed ' + 2 a sed -i \"s/debug_info = '2'/debug_info = '1'/\" build/moz.configure/toolchain.configure + ' +)" + +# don't kill build slaves by auto-guessing available CPU cores +eval "$( + declare -f build | \ + sed ' + 2 a export MOZ_MAKE_FLAGS=-j1 + ' +)" -- cgit v1.2.3-54-g00ecf