diff options
author | Sam James <sam@gentoo.org> | 2024-08-31 01:31:36 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-08-31 01:32:32 +0100 |
commit | 55d371a690e2b3d27dc237ebdab51d74c11388cd (patch) | |
tree | 7327c9fa9a35e8cefb703ce41d1548b2fb1435d0 /sys-libs/glibc/glibc-9999.ebuild | |
parent | dev-lang/dafny: bump to 4.8.0 (diff) | |
download | gentoo-55d371a690e2b3d27dc237ebdab51d74c11388cd.tar.gz gentoo-55d371a690e2b3d27dc237ebdab51d74c11388cd.tar.bz2 gentoo-55d371a690e2b3d27dc237ebdab51d74c11388cd.zip |
sys-libs/glibc: fix disabling alternative linkers
This works now that tc-ld-force-bfd got fixed recently.
Closes: https://bugs.gentoo.org/860900
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-libs/glibc/glibc-9999.ebuild')
-rw-r--r-- | sys-libs/glibc/glibc-9999.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild index a509c476c930..26a50c00fd1e 100644 --- a/sys-libs/glibc/glibc-9999.ebuild +++ b/sys-libs/glibc/glibc-9999.ebuild @@ -585,8 +585,10 @@ setup_env() { return 0 fi - # Glibc does not work with gold (for various reasons) #269274. - tc-ld-disable-gold + # glibc does not work with non-bfd (for various reasons): + # * gold (bug #269274) + # * mold (bug #860900) + tc-ld-force-bfd if use doc ; then export MAKEINFO=makeinfo |