diff options
author | Fabian Groffen <grobian@gentoo.org> | 2024-02-25 10:36:16 +0100 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2024-02-25 10:38:02 +0100 |
commit | 77e435c26870b2cd4f6ca8725afc009a491d554b (patch) | |
tree | 2236db87019618401a356588b2df46d59b7d6da3 /dev-debug | |
parent | app-containers/lxd: bump the dqlite version req on unstable pkgs (diff) | |
download | gentoo-77e435c26870b2cd4f6ca8725afc009a491d554b.tar.gz gentoo-77e435c26870b2cd4f6ca8725afc009a491d554b.tar.bz2 gentoo-77e435c26870b2cd4f6ca8725afc009a491d554b.zip |
dev-build/gdb-14.1-r1: fix compilation on Solaris
Python headers interfere, breaking the build, explicitly enable C++11
mode as to clear out the mismatch.
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'dev-debug')
-rw-r--r-- | dev-debug/gdb/gdb-14.1-r1.ebuild | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dev-debug/gdb/gdb-14.1-r1.ebuild b/dev-debug/gdb/gdb-14.1-r1.ebuild index f9b8b1ba925b..6894ea21be93 100644 --- a/dev-debug/gdb/gdb-14.1-r1.ebuild +++ b/dev-debug/gdb/gdb-14.1-r1.ebuild @@ -134,6 +134,14 @@ src_prepare() { # Avoid using ancient termcap from host on Prefix systems sed -i -e 's/termcap tinfow/tinfow/g' \ gdb/configure{.ac,} || die + if [[ ${CHOST} == *-solaris* ]] ; then + # code relies on C++11, so make sure we get that selected + # due to Python 3.11 pymacro.h doing stuff to work around + # versioning mess based on the C version, while we're compiling + # C++ here, so we need to make it clear we're doing C++11/C11 + # because Solaris system headers act on these + sed -i -e 's/-x c++/-std=c++11/' gdb/Makefile.in || die + fi } gdb_branding() { |