diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-03-17 00:03:55 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-03-17 05:28:42 +0000 |
commit | 5474c37574505cb692d629cb2469f5256e7cbcd5 (patch) | |
tree | 6c58d854248375a6569e17765bdf7af1d78c89e2 /www-servers/gatling | |
parent | dev-libs/libowfat: mark as LTO-unsafe (diff) | |
download | gentoo-5474c37574505cb692d629cb2469f5256e7cbcd5.tar.gz gentoo-5474c37574505cb692d629cb2469f5256e7cbcd5.tar.bz2 gentoo-5474c37574505cb692d629cb2469f5256e7cbcd5.zip |
www-servers/gatling: mark as LTO-unsafe
Closes: https://bugs.gentoo.org/864133
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'www-servers/gatling')
-rw-r--r-- | www-servers/gatling/gatling-0.16-r5.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www-servers/gatling/gatling-0.16-r5.ebuild b/www-servers/gatling/gatling-0.16-r5.ebuild index 795c4d890c67..fbdd4d3032e1 100644 --- a/www-servers/gatling/gatling-0.16-r5.ebuild +++ b/www-servers/gatling/gatling-0.16-r5.ebuild @@ -3,7 +3,7 @@ EAPI="7" -inherit toolchain-funcs +inherit flag-o-matic toolchain-funcs DESCRIPTION="High performance web server" HOMEPAGE="https://www.fefe.de/gatling/" @@ -39,6 +39,12 @@ src_prepare() { } src_compile() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/864133 + # + # Last released in 2016, sources are in cvs so I cannot check for activity. + filter-lto + local DIET= use diet && DIET='/usr/bin/diet' |