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 136BB15808E for ; Mon, 25 Apr 2022 01:12:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DBD03E0953; Mon, 25 Apr 2022 01:12:17 +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 CC740E0953 for ; Mon, 25 Apr 2022 01:12:16 +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 5140634158E for ; Mon, 25 Apr 2022 01:12:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ABA2D3F1 for ; Mon, 25 Apr 2022 01:12:13 +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: <1650849126.e1b2fe74f2926ecc663804531227937a90315a80.sam@gentoo> Subject: [gentoo-commits] proj/gcc-patches:master commit in: 12.0.0/musl/ X-VCS-Repository: proj/gcc-patches X-VCS-Files: 12.0.0/musl/50_all_calloc_libgccjit.patch 12.0.0/musl/README.history X-VCS-Directories: 12.0.0/musl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e1b2fe74f2926ecc663804531227937a90315a80 X-VCS-Branch: master Date: Mon, 25 Apr 2022 01:12:13 +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: 88783a7b-10b8-4b5d-b362-863a89eb7152 X-Archives-Hash: 2bca487ab71793865d6db30b17db11d1 commit: e1b2fe74f2926ecc663804531227937a90315a80 Author: Sam James gentoo org> AuthorDate: Mon Apr 25 01:10:06 2022 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 25 01:12:06 2022 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=e1b2fe74 12.0.0: update calloc patch (again) Bug: https://bugs.gentoo.org/828580 Signed-off-by: Sam James gentoo.org> 12.0.0/musl/50_all_calloc_libgccjit.patch | 12 ++++++------ 12.0.0/musl/README.history | 8 ++++++++ 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/12.0.0/musl/50_all_calloc_libgccjit.patch b/12.0.0/musl/50_all_calloc_libgccjit.patch index 756f622..f50ef8f 100644 --- a/12.0.0/musl/50_all_calloc_libgccjit.patch +++ b/12.0.0/musl/50_all_calloc_libgccjit.patch @@ -8,8 +8,8 @@ Subject: [PATCH] Fix attempt to use poisoned calloc error in libgccjit This moves usages of pthread.h to above any usage of system.h as it included #pragma GCC poison calloc ---- a/gcc/jit/jit-playback.c -+++ b/gcc/jit/jit-playback.c +--- a/gcc/jit/jit-playback.cc ++++ b/gcc/jit/jit-playback.cc @@ -18,6 +18,8 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see . */ @@ -28,8 +28,8 @@ included #pragma GCC poison calloc #include "jit-playback.h" #include "jit-result.h" #include "jit-builtins.h" ---- a/gcc/jit/jit-recording.c -+++ b/gcc/jit/jit-recording.c +--- a/gcc/jit/jit-recording.cc ++++ b/gcc/jit/jit-recording.cc @@ -18,6 +18,8 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see . */ @@ -48,8 +48,8 @@ included #pragma GCC poison calloc #include "jit-builtins.h" #include "jit-recording.h" #include "jit-playback.h" ---- a/gcc/jit/libgccjit.c -+++ b/gcc/jit/libgccjit.c +--- a/gcc/jit/libgccjit.cc ++++ b/gcc/jit/libgccjit.cc @@ -18,13 +18,14 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see . */ diff --git a/12.0.0/musl/README.history b/12.0.0/musl/README.history index bbddd5d..01e2278 100644 --- a/12.0.0/musl/README.history +++ b/12.0.0/musl/README.history @@ -1,3 +1,11 @@ +3 25 Apr 2022 + + - 25_all_multilib_pure64.patch + - 50_all_posix_memalign.patch + U 50_all_calloc_libgccjit.patch + - 50_all_cpu_indicator.patch + - nocross/50_all_libssp_unconditionally.patch + 2 25 Apr 2022 - 25_all_multilib_pure64.patch