mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-20 04:23:16 -04:00
dev-libs/hardened_malloc: add gcc16 support
Closes: https://bugs.gentoo.org/974723 Signed-off-by: Torben Kahnert <torben@tmak2002.dev>
This commit is contained in:
22
dev-libs/hardened_malloc/files/support-gcc16.patch
Normal file
22
dev-libs/hardened_malloc/files/support-gcc16.patch
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
From 04a25bd141efcd2c0d29ef7d868b205a844b3ad2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: underscorejoser <259754904+underscorejoser@users.noreply.github.com>
|
||||||
|
Date: Mon, 9 Mar 2026 03:07:29 -0300
|
||||||
|
Subject: [PATCH] Support GCC16
|
||||||
|
|
||||||
|
---
|
||||||
|
new.cc | 4 +++-
|
||||||
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/new.cc b/new.cc
|
||||||
|
index 165e19ee..885ed942 100644
|
||||||
|
--- a/new.cc
|
||||||
|
+++ b/new.cc
|
||||||
|
@@ -1,5 +1,7 @@
|
||||||
|
// needed with libstdc++ but not libc++
|
||||||
|
-#if __has_include(<bits/functexcept.h>)
|
||||||
|
+#if __has_include(<bits/new_throw.h>)
|
||||||
|
+#include <bits/new_throw.h>
|
||||||
|
+#elif __has_include(<bits/functexcept.h>)
|
||||||
|
#include <bits/functexcept.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
@@ -11,6 +11,8 @@ LICENSE="MIT"
|
|||||||
SLOT="0"
|
SLOT="0"
|
||||||
KEYWORDS="~amd64"
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
PATCHES=("${FILESDIR}/support-gcc16.patch")
|
||||||
|
|
||||||
src_test() {
|
src_test() {
|
||||||
emake test
|
emake test
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user