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 3427D158094 for ; Thu, 11 Aug 2022 09:00:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C51BE08A8; Thu, 11 Aug 2022 09:00: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 383B3E08A8 for ; Thu, 11 Aug 2022 09:00: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 37C5E341329 for ; Thu, 11 Aug 2022 09:00:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D56E559 for ; Thu, 11 Aug 2022 09:00: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: <1660208441.db34375a2a99b865f51349eba2c8c0293f12b953.sam@gentoo> Subject: [gentoo-commits] proj/gcc-patches:master commit in: 11.4.0/musl/ X-VCS-Repository: proj/gcc-patches X-VCS-Files: 11.4.0/musl/50_all_calloc_libgccjit.patch X-VCS-Directories: 11.4.0/musl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: db34375a2a99b865f51349eba2c8c0293f12b953 X-VCS-Branch: master Date: Thu, 11 Aug 2022 09:00: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: c3d9475e-9b7c-4b2b-a413-bf0cf944489f X-Archives-Hash: ced5f2cf96ba4b963602e1770ef27056 commit: db34375a2a99b865f51349eba2c8c0293f12b953 Author: Sam James gentoo org> AuthorDate: Thu Aug 11 08:59:45 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Aug 11 09:00:41 2022 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=db34375a 11.4.0: add 50_all_calloc_libgccjit I could've sworn we added this for 11.x too, but apparently I never did for 12.x. Bug: https://bugs.gentoo.org/828580 Bug: https://bugs.gentoo.org/851555 Signed-off-by: Sam James gentoo.org> 11.4.0/musl/50_all_calloc_libgccjit.patch | 72 +++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/11.4.0/musl/50_all_calloc_libgccjit.patch b/11.4.0/musl/50_all_calloc_libgccjit.patch new file mode 100644 index 0000000..5dec538 --- /dev/null +++ b/11.4.0/musl/50_all_calloc_libgccjit.patch @@ -0,0 +1,72 @@ +https://git.alpinelinux.org/aports/plain/main/gcc/0042-Fix-attempt-to-use-poisoned-calloc-error-in-libgccji.patch +https://bugs.gentoo.org/828580 +https://bugs.gentoo.org/851555 + +https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106102 +https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104799 + +From 72f32e3383129ad139df76d9a063fac9b03079b1 Mon Sep 17 00:00:00 2001 +From: Alex McGrath +Date: Wed, 13 Oct 2021 23:24:27 +0100 +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 +@@ -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 + . */ + ++#include ++ + #include "config.h" + #include "system.h" + #include "coretypes.h" +@@ -41,8 +43,6 @@ along with GCC; see the file COPYING3. If not see + #include "diagnostic.h" + #include "stmt.h" + +-#include +- + #include "jit-playback.h" + #include "jit-result.h" + #include "jit-builtins.h" +--- a/gcc/jit/jit-recording.c ++++ b/gcc/jit/jit-recording.c +@@ -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 + . */ + ++#include ++ + #include "config.h" + #include "system.h" + #include "coretypes.h" +@@ -25,8 +27,6 @@ along with GCC; see the file COPYING3. If not see + #include "pretty-print.h" + #include "toplev.h" + +-#include +- + #include "jit-builtins.h" + #include "jit-recording.h" + #include "jit-playback.h" +--- a/gcc/jit/libgccjit.c ++++ b/gcc/jit/libgccjit.c +@@ -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 + . */ + ++#include ++ + #include "config.h" + #include "system.h" + #include "coretypes.h" + #include "timevar.h" + #include "typed-splay-tree.h" + #include "cppbuiltin.h" +-#include + + #include "libgccjit.h" + #include "jit-recording.h"