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 (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D8F71158042 for ; Mon, 11 Nov 2024 19:46:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E46EE0805; Mon, 11 Nov 2024 19:46:12 +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 B4205E0805 for ; Mon, 11 Nov 2024 19:46:11 +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 B4A7D335D2B for ; Mon, 11 Nov 2024 19:46:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23F8B18DD for ; Mon, 11 Nov 2024 19:46:09 +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: <1731354282.9bb90d6a35c8ab572372dfcff42a0ecd7dd53952.sam@gentoo> Subject: [gentoo-commits] proj/gcc-patches:master commit in: 15.0.0/gentoo/ X-VCS-Repository: proj/gcc-patches X-VCS-Files: 15.0.0/gentoo/33_all_PR80677-cross-limits.patch 15.0.0/gentoo/README.history X-VCS-Directories: 15.0.0/gentoo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9bb90d6a35c8ab572372dfcff42a0ecd7dd53952 X-VCS-Branch: master Date: Mon, 11 Nov 2024 19:46:09 +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: 2f3b6d16-f6df-4a45-ade8-a15358962bfa X-Archives-Hash: 0fa3652c9146c2ecc13486f3f202a0de commit: 9bb90d6a35c8ab572372dfcff42a0ecd7dd53952 Author: Sam James gentoo org> AuthorDate: Mon Nov 11 19:44:42 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Nov 11 19:44:42 2024 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=9bb90d6a 15.0.0: add 33_all_PR80677-cross-limits.patch I needed this with a cross from amd64->s390 after doing crossdev as normal but then upgrading them to 15 snapshots. Bug: https://gcc.gnu.org/PR80677 Signed-off-by: Sam James gentoo.org> 15.0.0/gentoo/33_all_PR80677-cross-limits.patch | 38 +++++++++++++++++++++++++ 15.0.0/gentoo/README.history | 4 +++ 2 files changed, 42 insertions(+) diff --git a/15.0.0/gentoo/33_all_PR80677-cross-limits.patch b/15.0.0/gentoo/33_all_PR80677-cross-limits.patch new file mode 100644 index 0000000..3cbef01 --- /dev/null +++ b/15.0.0/gentoo/33_all_PR80677-cross-limits.patch @@ -0,0 +1,38 @@ +https://gcc.gnu.org/PR80677 +--- a/gcc/limitx.h ++++ b/gcc/limitx.h +@@ -29,7 +29,7 @@ + #ifndef _GCC_LIMITS_H_ /* Terminated in limity.h. */ + #define _GCC_LIMITS_H_ + +-#ifndef _LIBC_LIMITS_H_ ++#if !defined(_LIBC_LIMITS_H_) && __has_include_next() + /* Use "..." so that we find syslimits.h only in this same directory. */ + #include "syslimits.h" + #endif +--- a/gcc/limity.h ++++ b/gcc/limity.h +@@ -3,7 +3,7 @@ + + #else /* not _GCC_LIMITS_H_ */ + +-#ifdef _GCC_NEXT_LIMITS_H ++#if defined(_GCC_NEXT_LIMITS_H) && __has_include_next() + #include_next /* recurse down to the real one */ + #endif + +--- a/gcc/Makefile.in ++++ b/gcc/Makefile.in +@@ -3344,11 +3344,7 @@ stmp-int-hdrs: $(STMP_FIXINC) $(T_GLIMITS_H) $(T_STDINT_GCC_H) $(USER_H) fixinc_ + sysroot_headers_suffix=`echo $${ml} | sed -e 's/;.*$$//'`; \ + multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \ + include_dir=include$${multi_dir}; \ +- if $(LIMITS_H_TEST) ; then \ +- cat $(srcdir)/limitx.h $(T_GLIMITS_H) $(srcdir)/limity.h > tmp-xlimits.h; \ +- else \ +- cat $(T_GLIMITS_H) > tmp-xlimits.h; \ +- fi; \ ++ cat $(srcdir)/limitx.h $(T_GLIMITS_H) $(srcdir)/limity.h > tmp-xlimits.h; \ + $(mkinstalldirs) $${include_dir}; \ + chmod a+rx $${include_dir} || true; \ + $(SHELL) $(srcdir)/../move-if-change \ diff --git a/15.0.0/gentoo/README.history b/15.0.0/gentoo/README.history index 25ab12b..dbf2b56 100644 --- a/15.0.0/gentoo/README.history +++ b/15.0.0/gentoo/README.history @@ -1,3 +1,7 @@ +23 11 November 2024 + + + 33_all_PR80677-cross-limits.patch + 22 10 November 2024 + 72_all_PR117476-revert.patch