diff options
author | Joonas Niilola <juippis@gentoo.org> | 2024-03-24 19:37:30 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-03-24 19:39:15 +0200 |
commit | 7b392831019eb177fc3579e62343c251067d0ec8 (patch) | |
tree | a0f53c1ded7fa2d5032b8868e34af57c15ed8d6b /mail-client | |
parent | www-client/firefox: filter pack-relative-relocs on 124.0.1 (diff) | |
download | gentoo-7b392831019eb177fc3579e62343c251067d0ec8.tar.gz gentoo-7b392831019eb177fc3579e62343c251067d0ec8.tar.bz2 gentoo-7b392831019eb177fc3579e62343c251067d0ec8.zip |
mail-client/thunderbird: handle "-z,pack-relative-relocs" like in ff
Closes: https://bugs.gentoo.org/916405
Closes: https://bugs.gentoo.org/927559
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/thunderbird/thunderbird-115.9.0.ebuild | 28 |
1 files changed, 8 insertions, 20 deletions
diff --git a/mail-client/thunderbird/thunderbird-115.9.0.ebuild b/mail-client/thunderbird/thunderbird-115.9.0.ebuild index 001417ed45f6..ecb7939f2ef7 100644 --- a/mail-client/thunderbird/thunderbird-115.9.0.ebuild +++ b/mail-client/thunderbird/thunderbird-115.9.0.ebuild @@ -1011,26 +1011,14 @@ src_configure() { fi fi - if use clang ; then - # https://bugzilla.mozilla.org/show_bug.cgi?id=1482204 - # https://bugzilla.mozilla.org/show_bug.cgi?id=1483822 - # toolkit/moz.configure Elfhack section: target.cpu in ('arm', 'x86', 'x86_64') - local disable_elf_hack= - if use amd64 ; then - disable_elf_hack=yes - elif use x86 ; then - disable_elf_hack=yes - elif use arm ; then - disable_elf_hack=yes - fi - - if [[ -n ${disable_elf_hack} ]] ; then - mozconfig_add_options_ac 'elf-hack is broken when using Clang' --disable-elf-hack - fi - fi - - if use elibc_musl && use arm64 ; then - mozconfig_add_options_ac 'elf-hack is broken when using musl/arm64' --disable-elf-hack + # With profile 23.0 elf-hack=legacy is broken with gcc. + # With Firefox-115esr elf-hack=relr isn't available (only in rapid). + # Solution: Disable build system's elf-hack completely, and add "-z,pack-relative-relocs" + # manually with gcc. + mozconfig_add_options_ac 'elf-hack disabled' --disable-elf-hack + + if use amd64 || use x86 ; then + ! use clang && append-ldflags "-z,pack-relative-relocs" fi # Additional ARCH support |