diff options
author | Timo Teräs <timo.teras@iki.fi> | 2019-05-12 21:47:34 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2019-05-12 21:49:48 +0300 |
commit | b65a9c1871078df908c9e54b82d8715ca7b03ec8 (patch) | |
tree | 1e7d6d874111c0583d70bef145c43f1e4a38624c /testing/firefox | |
parent | 2226b3270ab615ff3d53fc46bb9d05af20df7c0d (diff) | |
download | aports-b65a9c1871078df908c9e54b82d8715ca7b03ec8.tar.bz2 aports-b65a9c1871078df908c9e54b82d8715ca7b03ec8.tar.xz |
testing/firefox: force optimization level -O2
ref #10441
The default, -Os, causes crashes likely due to compiler bug or UB.
Diffstat (limited to 'testing/firefox')
-rw-r--r-- | testing/firefox/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/firefox/APKBUILD b/testing/firefox/APKBUILD index 25943c41f8..7e51c24bb2 100644 --- a/testing/firefox/APKBUILD +++ b/testing/firefox/APKBUILD @@ -4,7 +4,7 @@ pkgname=firefox pkgver=66.0.5 _pkgver=$pkgver _xulver=$pkgver -pkgrel=0 +pkgrel=1 pkgdesc="Firefox web browser" url="https://www.firefox.com/" # limited by rust and cargo @@ -122,7 +122,7 @@ build() { --enable-alsa \ --enable-default-toolkit=cairo-gtk3 \ --enable-official-branding \ - --enable-optimize="$CFLAGS" \ + --enable-optimize="$CFLAGS -O2" \ --enable-startup-notification \ --enable-system-ffi \ --enable-system-sqlite \ |