commit: 548a6269fe8858b4c89b8e9f878eb22ceef6cdf3 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Aug 17 20:02:30 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Aug 17 20:02:30 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=548a6269
dev-util/debugedit: avoid inlined xxhash It breaks the build with -Og. Closes: https://bugs.gentoo.org/956627 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-util/debugedit/debugedit-5.2.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-util/debugedit/debugedit-5.2.ebuild b/dev-util/debugedit/debugedit-5.2.ebuild index 7232f3536a3e..5bb5d4e46898 100644 --- a/dev-util/debugedit/debugedit-5.2.ebuild +++ b/dev-util/debugedit/debugedit-5.2.ebuild @@ -53,6 +53,10 @@ src_configure() { # avoid BDEP on dwz DWZ=dwz ac_cv_dwz_j=yes + + # We don't want to effectively bundle xxhash. It fails to + # build with -Og and such too (bug #956627). + --disable-inlined-xxhash ) econf "${myconf[@]}" }
