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 567BA158089 for ; Mon, 11 Sep 2023 17:21:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79A112BC0D6; Mon, 11 Sep 2023 17:21:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 629AF2BC0D6 for ; Mon, 11 Sep 2023 17:21:57 +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 936F9335C56 for ; Mon, 11 Sep 2023 17:21:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0B89F35 for ; Mon, 11 Sep 2023 17:21:54 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1694452899.9337990f921340104d26befc46565b68d22444c1.dilfridge@gentoo> Subject: [gentoo-commits] proj/toolchain/glibc-patches:master commit in: 9999/ X-VCS-Repository: proj/toolchain/glibc-patches X-VCS-Files: 9999/0004-Fix-miscompilation-on-ia64-s-gcc-10.patch X-VCS-Directories: 9999/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 9337990f921340104d26befc46565b68d22444c1 X-VCS-Branch: master Date: Mon, 11 Sep 2023 17:21:54 +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: f0a5840c-8808-42e8-aadb-d349226aa54d X-Archives-Hash: c26c802b05f15c2b961367df0ea5e29a commit: 9337990f921340104d26befc46565b68d22444c1 Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Sep 11 17:21:39 2023 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Mon Sep 11 17:21:39 2023 +0000 URL: https://gitweb.gentoo.org/proj/toolchain/glibc-patches.git/commit/?id=9337990f ia64 patch upstreamed Signed-off-by: Andreas K. Hüttel gentoo.org> .../0004-Fix-miscompilation-on-ia64-s-gcc-10.patch | 32 ---------------------- 1 file changed, 32 deletions(-) diff --git a/9999/0004-Fix-miscompilation-on-ia64-s-gcc-10.patch b/9999/0004-Fix-miscompilation-on-ia64-s-gcc-10.patch deleted file mode 100644 index 8357101..0000000 --- a/9999/0004-Fix-miscompilation-on-ia64-s-gcc-10.patch +++ /dev/null @@ -1,32 +0,0 @@ -From ed428afb4c6353692fba6cedaa2f9db7bc9fb551 Mon Sep 17 00:00:00 2001 -From: Sergei Trofimovich -Date: Sat, 11 Jul 2020 20:06:51 +0300 -Subject: [PATCH 4/9] Fix miscompilation on ia64's gcc-10 -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Bug: https://bugs.gentoo.org/723268 -Signed-off-by: Andreas K. Hüttel ---- - sysdeps/unix/sysv/linux/ia64/dl-sysdep.h | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/sysdeps/unix/sysv/linux/ia64/dl-sysdep.h b/sysdeps/unix/sysv/linux/ia64/dl-sysdep.h -index 3e4d5da820..eb7681b704 100644 ---- a/sysdeps/unix/sysv/linux/ia64/dl-sysdep.h -+++ b/sysdeps/unix/sysv/linux/ia64/dl-sysdep.h -@@ -32,7 +32,9 @@ - #ifndef __ASSEMBLER__ - /* Don't declare this as a function---we want it's entry-point, not - it's function descriptor... */ --extern int _dl_sysinfo_break attribute_hidden; -+/* Use section ".text" to force far GPREL64 relocation instead of -+ GPREL22 . */ -+extern int _dl_sysinfo_break attribute_hidden __attribute__((section(".text"))); - # define DL_SYSINFO_DEFAULT ((uintptr_t) &_dl_sysinfo_break) - # define DL_SYSINFO_IMPLEMENTATION \ - asm (".text\n\t" \ --- -2.39.3 -