commit: 4455b9916ad120361e1587d44f77bf93886d2c6a Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Apr 15 09:08:53 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Apr 15 09:32:28 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4455b991
dev-util/edb-debugger: fix build w/ gcc 13 Closes: https://bugs.gentoo.org/897890 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-util/edb-debugger/edb-debugger-1.3.0-r1.ebuild | 3 ++- .../files/edb-debugger-1.3.0-gcc13.patch | 26 ++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/dev-util/edb-debugger/edb-debugger-1.3.0-r1.ebuild b/dev-util/edb-debugger/edb-debugger-1.3.0-r1.ebuild index 01f72a1e8911..1e01b9496797 100644 --- a/dev-util/edb-debugger/edb-debugger-1.3.0-r1.ebuild +++ b/dev-util/edb-debugger/edb-debugger-1.3.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -40,6 +40,7 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/${P}-gcc12.patch "${FILESDIR}"/${PN}-1.3.0-capstone-5.patch + "${FILESDIR}"/${PN}-1.3.0-gcc13.patch ) src_prepare() { diff --git a/dev-util/edb-debugger/files/edb-debugger-1.3.0-gcc13.patch b/dev-util/edb-debugger/files/edb-debugger-1.3.0-gcc13.patch new file mode 100644 index 000000000000..f30eacc97436 --- /dev/null +++ b/dev-util/edb-debugger/files/edb-debugger-1.3.0-gcc13.patch @@ -0,0 +1,26 @@ +https://github.com/eteran/edb-debugger/pull/837 + +From 934de81a7799f3e1d210366e0eb5ea86d172ead4 Mon Sep 17 00:00:00 2001 +From: Sam James <[email protected]> +Date: Sat, 15 Apr 2023 10:05:11 +0100 +Subject: [PATCH] Fix build with GCC 13 + +GCC 13 (as usual for new compiler releases) shuffles around some internal includes so some +are no longer transitively included. + +See https://gnu.org/software/gcc/gcc-13/porting_to.html. + +Bug: https://bugs.gentoo.org/897890 +--- a/plugins/DebuggerCore/unix/linux/FeatureDetect.cpp ++++ b/plugins/DebuggerCore/unix/linux/FeatureDetect.cpp +@@ -19,6 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. + #include "FeatureDetect.h" + #include "edb.h" + ++#include <cstdint> + #include <fcntl.h> + #include <iomanip> + #include <iostream> +-- +2.40.0 +
