From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3CAEB158089 for ; Tue, 14 Nov 2023 07:11:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 641FD2BC01A; Tue, 14 Nov 2023 07:11:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3FC7B2BC01A for ; Tue, 14 Nov 2023 07:11:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 38F4C335D6A for ; Tue, 14 Nov 2023 07:11:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70585AAB for ; Tue, 14 Nov 2023 07:11:48 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1699945873.35bb529f420ff5863fdae51049e6935ab927ff3d.sam@gentoo> Subject: [gentoo-commits] proj/gcc-patches:master commit in: 14.0.0/gentoo/ X-VCS-Repository: proj/gcc-patches X-VCS-Files: 14.0.0/gentoo/25_all_lto-intl-workaround-PR95194.patch X-VCS-Directories: 14.0.0/gentoo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 35bb529f420ff5863fdae51049e6935ab927ff3d X-VCS-Branch: master Date: Tue, 14 Nov 2023 07:11:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9ff95da4-660d-4ce9-b5d1-c0d84de194bb X-Archives-Hash: ffc6c804b819c0560b44589f8f35faa2 commit: 35bb529f420ff5863fdae51049e6935ab927ff3d Author: Sam James gentoo org> AuthorDate: Tue Nov 14 07:10:56 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 14 07:11:13 2023 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=35bb529f 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 gentoo.org> .../gentoo/25_all_lto-intl-workaround-PR95194.patch | 20 -------------------- 1 file changed, 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