aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-11-14 07:10:56 +0000
committerSam James <sam@gentoo.org>2023-11-14 07:11:13 +0000
commit35bb529f420ff5863fdae51049e6935ab927ff3d (patch)
tree4d80303c6c65b0de6c1747ff5f2a92f64cf9fc3d
parent14.0.0: cut new patchset (diff)
downloadgcc-patches-35bb529f420ff5863fdae51049e6935ab927ff3d.tar.gz
gcc-patches-35bb529f420ff5863fdae51049e6935ab927ff3d.tar.bz2
gcc-patches-35bb529f420ff5863fdae51049e6935ab927ff3d.zip
14.0.0: drop 25_all_lto-intl-workaround-PR95194.patch
The built-in intl/ was dropped in upstream commit fbe4e64365ec7fc68536bbf351c2fb246afaf7e6 by our very own Arsen, so this is obsolete. Bug: https://bugs.gentoo.org/723370 Bug: https://gcc.gnu.org/PR95194 Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--14.0.0/gentoo/25_all_lto-intl-workaround-PR95194.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/14.0.0/gentoo/25_all_lto-intl-workaround-PR95194.patch b/14.0.0/gentoo/25_all_lto-intl-workaround-PR95194.patch
deleted file mode 100644
index 9613216..0000000
--- a/14.0.0/gentoo/25_all_lto-intl-workaround-PR95194.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Trick libintl not to use '_INTL_REDIRECT_ASM' mode as it's
-incompatible with LTO builds.
-
-glibc does not normally use libintl implementations and uses
-it's own primitives. But musl ond others do fall back to libintl.
-
-Reported-by: Andrew Savchenko
-Bug: https://bugs.gentoo.org/723370
-Bug: https://gcc.gnu.org/PR95194
---- a/intl/libgnuintl.h
-+++ b/intl/libgnuintl.h
-@@ -93,7 +93,7 @@ extern "C" {
- If he doesn't, we choose the method. A third possible method is
- _INTL_REDIRECT_ASM, supported only by GCC. */
- #if !(defined _INTL_REDIRECT_INLINE || defined _INTL_REDIRECT_MACROS)
--# if __GNUC__ >= 2 && !defined __APPLE_CC__ && (defined __STDC__ || defined __cplusplus)
-+# if __GNUC__ >= 2 && !defined __APPLE_CC__ && (defined __STDC__ || defined __cplusplus) && USE_ASM_ALIASES_THAT_BREAK_LTO
- # define _INTL_REDIRECT_ASM
- # else
- # ifdef __cplusplus