diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-03-14 00:40:22 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-03-14 06:05:29 +0000 |
commit | ae5b7c5a861d48d9602d4614649553ebbe47e9ad (patch) | |
tree | e9b3fc30420901fee8ebb77d76604d4145f330a9 /sci-electronics | |
parent | dev-ruby/gruff: add 0.24.0 (diff) | |
download | gentoo-ae5b7c5a861d48d9602d4614649553ebbe47e9ad.tar.gz gentoo-ae5b7c5a861d48d9602d4614649553ebbe47e9ad.tar.bz2 gentoo-ae5b7c5a861d48d9602d4614649553ebbe47e9ad.zip |
sci-electronics/fasthenry: mark as LTO-unsafe
Closes: https://bugs.gentoo.org/862450
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-electronics')
-rw-r--r-- | sci-electronics/fasthenry/fasthenry-3.0.20.07.17.ebuild | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sci-electronics/fasthenry/fasthenry-3.0.20.07.17.ebuild b/sci-electronics/fasthenry/fasthenry-3.0.20.07.17.ebuild index ee1cef974df8..aa308adbcf52 100644 --- a/sci-electronics/fasthenry/fasthenry-3.0.20.07.17.ebuild +++ b/sci-electronics/fasthenry/fasthenry-3.0.20.07.17.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit toolchain-funcs +inherit flag-o-matic toolchain-funcs DESCRIPTION="Three dimensional inductance computation program, Whiteley Research version" HOMEPAGE="http://www.wrcad.com/freestuff.html" @@ -27,6 +27,13 @@ PATCHES=( ) src_compile() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/862450 + # + # Upstream provides a contact email. I have sent an email describing the + # bug. + filter-lto + tc-export CC AR emake all } |