diff options
Diffstat (limited to 'extra/firefox/PKGBUILD')
-rw-r--r-- | extra/firefox/PKGBUILD | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/extra/firefox/PKGBUILD b/extra/firefox/PKGBUILD new file mode 100644 index 00000000..6473b993 --- /dev/null +++ b/extra/firefox/PKGBUILD @@ -0,0 +1,15 @@ +# the gold linker simply allocates too much memory via mmap, cannot +# possibly word for libxul.so on 32-bit +eval "$( + declare -f prepare | \ + sed ' + s/ac_add_options --enable-gold/ac_add_options --disable-gold/g + ' +)" + +eval "$( + declare -f build | \ + sed ' + /CPPFLAGS/ a LDFLAGS+="-Wl,--no-keep-memory" + ' +)" |