commit: 35b8bf369c6cb5b8a726c4b147a5309a21b6d344 Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com> AuthorDate: Tue Jan 30 01:28:03 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Jan 30 05:09:51 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35b8bf36
dev-libs/liberasurecode: suppress LTO, as it does not work Reported upstream as https://bugs.launchpad.net/liberasurecode/+bug/2051613 Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com> Signed-off-by: Sam James <sam <AT> gentoo.org> dev-libs/liberasurecode/liberasurecode-1.6.3.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-libs/liberasurecode/liberasurecode-1.6.3.ebuild b/dev-libs/liberasurecode/liberasurecode-1.6.3.ebuild index b42250982fce..f600ce77a6a5 100644 --- a/dev-libs/liberasurecode/liberasurecode-1.6.3.ebuild +++ b/dev-libs/liberasurecode/liberasurecode-1.6.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="Erasure Code API library written in C with pluggable Erasure Code backends" HOMEPAGE="https://bitbucket.org/tsg-/liberasurecode/overview" @@ -28,6 +28,11 @@ src_prepare() { } src_configure() { + + # fails with -Werror=lto-type-mismatch + # https://bugs.launchpad.net/liberasurecode/+bug/2051613 + filter-lto + econf \ --htmldir=/usr/share/doc/${PF} \ --disable-werror \
