Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/
Date: Wed, 11 Mar 2020 19:21:51
Message-Id: 1583954472.20eab5991c298a53c2df138bee99463dfb88c4d7.whissi@gentoo
1 commit: 20eab5991c298a53c2df138bee99463dfb88c4d7
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 11 16:46:57 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 11 19:21:12 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20eab599
7
8 www-client/firefox: --disable-elf-hack is not supported on arm64
9
10 Fixes
11
12 0:23.63 mozbuild.configure.options.InvalidOptionError: --disable-elf-hack is not available in this configuration
13
14 as seen on arm64.
15
16 Link: https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=f10361660904dd392c6fe7f07a5cdf99ba91e2ea
17 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
18
19 www-client/firefox/firefox-68.5.0.ebuild | 2 +-
20 www-client/firefox/firefox-68.6.0.ebuild | 2 +-
21 2 files changed, 2 insertions(+), 2 deletions(-)
22
23 diff --git a/www-client/firefox/firefox-68.5.0.ebuild b/www-client/firefox/firefox-68.5.0.ebuild
24 index 50337cc6651..4b8f2519a86 100644
25 --- a/www-client/firefox/firefox-68.5.0.ebuild
26 +++ b/www-client/firefox/firefox-68.5.0.ebuild
27 @@ -570,7 +570,7 @@ src_configure() {
28 # when they would normally be larger than 2GiB.
29 append-ldflags "-Wl,--compress-debug-sections=zlib"
30
31 - if use clang ; then
32 + if use clang && ! use arm64; then
33 # https://bugzilla.mozilla.org/show_bug.cgi?id=1482204
34 # https://bugzilla.mozilla.org/show_bug.cgi?id=1483822
35 mozconfig_annotate 'elf-hack is broken when using Clang' --disable-elf-hack
36
37 diff --git a/www-client/firefox/firefox-68.6.0.ebuild b/www-client/firefox/firefox-68.6.0.ebuild
38 index 3b50e731772..546fb2cae1d 100644
39 --- a/www-client/firefox/firefox-68.6.0.ebuild
40 +++ b/www-client/firefox/firefox-68.6.0.ebuild
41 @@ -570,7 +570,7 @@ src_configure() {
42 # when they would normally be larger than 2GiB.
43 append-ldflags "-Wl,--compress-debug-sections=zlib"
44
45 - if use clang ; then
46 + if use clang && ! use arm64; then
47 # https://bugzilla.mozilla.org/show_bug.cgi?id=1482204
48 # https://bugzilla.mozilla.org/show_bug.cgi?id=1483822
49 mozconfig_annotate 'elf-hack is broken when using Clang' --disable-elf-hack