diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-05-06 00:47:37 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-05-06 07:05:22 +0100 |
commit | c88dedc2eee275af180bbf6a5341c372a8d79182 (patch) | |
tree | b949e16438e216e8375608ba5868692f42794220 /app-editors/wxhexeditor | |
parent | app-misc/gtypist: update EAPI 7 -> 8, fix modern C issues (diff) | |
download | gentoo-c88dedc2eee275af180bbf6a5341c372a8d79182.tar.gz gentoo-c88dedc2eee275af180bbf6a5341c372a8d79182.tar.bz2 gentoo-c88dedc2eee275af180bbf6a5341c372a8d79182.zip |
app-editors/wxhexeditor: mark as LTO-unsafe
Closes: https://bugs.gentoo.org/854414
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-editors/wxhexeditor')
-rw-r--r-- | app-editors/wxhexeditor/wxhexeditor-0.24-r1.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app-editors/wxhexeditor/wxhexeditor-0.24-r1.ebuild b/app-editors/wxhexeditor/wxhexeditor-0.24-r1.ebuild index 6d3401c0390b..9d44eb00cbc8 100644 --- a/app-editors/wxhexeditor/wxhexeditor-0.24-r1.ebuild +++ b/app-editors/wxhexeditor/wxhexeditor-0.24-r1.ebuild @@ -5,7 +5,7 @@ EAPI=7 MY_PN="wxHexEditor" WX_GTK_VER=3.0-gtk3 -inherit toolchain-funcs wxwidgets +inherit flag-o-matic toolchain-funcs wxwidgets DESCRIPTION="A cross-platform hex editor designed specially for large files" HOMEPAGE="https://github.com/EUA/wxHexEditor" @@ -40,4 +40,9 @@ pkg_setup() { src_prepare() { setup-wxwidgets default + + # -Werror=odr, -Werror=lto-type-mismatch + # https://bugs.gentoo.org/854414 + # https://github.com/EUA/wxHexEditor/issues/222 + filter-lto } |