diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2020-03-11 17:46:57 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2020-03-11 20:21:12 +0100 |
commit | 20eab5991c298a53c2df138bee99463dfb88c4d7 (patch) | |
tree | bae6933260b8c16440e36406fe6df81fe3845123 /www-client | |
parent | dev-libs/opencl-clang: bump slot 9 to version 9.0.1 (diff) | |
download | gentoo-20eab5991c298a53c2df138bee99463dfb88c4d7.tar.gz gentoo-20eab5991c298a53c2df138bee99463dfb88c4d7.tar.bz2 gentoo-20eab5991c298a53c2df138bee99463dfb88c4d7.zip |
www-client/firefox: --disable-elf-hack is not supported on arm64
Fixes
0:23.63 mozbuild.configure.options.InvalidOptionError: --disable-elf-hack is not available in this configuration
as seen on arm64.
Link: https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=f10361660904dd392c6fe7f07a5cdf99ba91e2ea
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'www-client')
-rw-r--r-- | www-client/firefox/firefox-68.5.0.ebuild | 2 | ||||
-rw-r--r-- | www-client/firefox/firefox-68.6.0.ebuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/www-client/firefox/firefox-68.5.0.ebuild b/www-client/firefox/firefox-68.5.0.ebuild index 50337cc66518..4b8f2519a869 100644 --- a/www-client/firefox/firefox-68.5.0.ebuild +++ b/www-client/firefox/firefox-68.5.0.ebuild @@ -570,7 +570,7 @@ src_configure() { # when they would normally be larger than 2GiB. append-ldflags "-Wl,--compress-debug-sections=zlib" - if use clang ; then + if use clang && ! use arm64; then # https://bugzilla.mozilla.org/show_bug.cgi?id=1482204 # https://bugzilla.mozilla.org/show_bug.cgi?id=1483822 mozconfig_annotate 'elf-hack is broken when using Clang' --disable-elf-hack diff --git a/www-client/firefox/firefox-68.6.0.ebuild b/www-client/firefox/firefox-68.6.0.ebuild index 3b50e7317723..546fb2cae1df 100644 --- a/www-client/firefox/firefox-68.6.0.ebuild +++ b/www-client/firefox/firefox-68.6.0.ebuild @@ -570,7 +570,7 @@ src_configure() { # when they would normally be larger than 2GiB. append-ldflags "-Wl,--compress-debug-sections=zlib" - if use clang ; then + if use clang && ! use arm64; then # https://bugzilla.mozilla.org/show_bug.cgi?id=1482204 # https://bugzilla.mozilla.org/show_bug.cgi?id=1483822 mozconfig_annotate 'elf-hack is broken when using Clang' --disable-elf-hack |