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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A45C0138334 for ; Fri, 19 Oct 2018 22:26:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3B5BE076B; Fri, 19 Oct 2018 22:26:14 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AA4D4E076B for ; Fri, 19 Oct 2018 22:26:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AC78C335C5A for ; Fri, 19 Oct 2018 22:26:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD8173F1 for ; Fri, 19 Oct 2018 22:26:05 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1539987954.f4f2cbbb6fed8a63e55b5d1a13efb48e8769cf59.slyfox@gentoo> Subject: [gentoo-commits] proj/gcc-patches:master commit in: 4.9.4/gentoo/ X-VCS-Repository: proj/gcc-patches X-VCS-Files: 4.9.4/gentoo/99_all_remove-lieee.patch 4.9.4/gentoo/README.history X-VCS-Directories: 4.9.4/gentoo/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: f4f2cbbb6fed8a63e55b5d1a13efb48e8769cf59 X-VCS-Branch: master Date: Fri, 19 Oct 2018 22:26:05 +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-Archives-Salt: 0a41d6ca-66e3-4ec4-9a25-329d69393e5d X-Archives-Hash: 7c2bdcc04977069d7bca08c1e22e7e43 commit: f4f2cbbb6fed8a63e55b5d1a13efb48e8769cf59 Author: Sergei Trofimovich gentoo org> AuthorDate: Fri Oct 19 22:25:54 2018 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Fri Oct 19 22:25:54 2018 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=f4f2cbbb 4.9.4: drop assumed -lieee from -mieee-fp Signed-off-by: Sergei Trofimovich gentoo.org> 4.9.4/gentoo/99_all_remove-lieee.patch | 47 ++++++++++++++++++++++++++++++++++ 4.9.4/gentoo/README.history | 3 +++ 2 files changed, 50 insertions(+) diff --git a/4.9.4/gentoo/99_all_remove-lieee.patch b/4.9.4/gentoo/99_all_remove-lieee.patch new file mode 100644 index 0000000..390a3b0 --- /dev/null +++ b/4.9.4/gentoo/99_all_remove-lieee.patch @@ -0,0 +1,47 @@ +Modern glibc stopped providing ieee.a + +From 401a6ba8d6aa5a92acaedae24b84c59d284f446d Mon Sep 17 00:00:00 2001 +From: rguenth +Date: Thu, 12 Jul 2018 11:53:34 +0000 +Subject: [PATCH] 2018-07-12 Richard Biener + + PR target/84829 + * config/gnu-user.h (GNU_USER_TARGET_NO_PTHREADS_LIB_SPEC): + Remove -mieee-fp handling. + + * gcc.target/i386/pr84829.c: New testcase. + + +git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@262582 138bc75d-0d04-0410-961f-82ee72b054a4 +--- + gcc/ChangeLog | 6 ++++++ + gcc/config/gnu-user.h | 2 +- + gcc/testsuite/ChangeLog | 5 +++++ + gcc/testsuite/gcc.target/i386/pr84829.c | 7 +++++++ + 4 files changed, 19 insertions(+), 1 deletion(-) + create mode 100644 gcc/testsuite/gcc.target/i386/pr84829.c + +--- a/gcc/config/gnu-user.h ++++ b/gcc/config/gnu-user.h +@@ -120,7 +120,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see + + #define GNU_USER_TARGET_NO_PTHREADS_LIB_SPEC \ + "%{shared:-lc} \ +- %{!shared:%{mieee-fp:-lieee} %{profile:-lc_p}%{!profile:-lc}}" ++ %{!shared:%{profile:-lc_p}%{!profile:-lc}}" + + #define GNU_USER_TARGET_LIB_SPEC \ + "%{pthread:-lpthread} " \ +--- /dev/null ++++ b/gcc/testsuite/gcc.target/i386/pr84829.c +@@ -0,0 +1,7 @@ ++/* { dg-do link } */ ++/* { dg-options "-mieee-fp" } */ ++ ++int main() ++{ ++ return 0; ++} +-- +2.19.0 + diff --git a/4.9.4/gentoo/README.history b/4.9.4/gentoo/README.history index eec3b4a..67c7a25 100644 --- a/4.9.4/gentoo/README.history +++ b/4.9.4/gentoo/README.history @@ -1,3 +1,6 @@ +1.4 TODO + + 99_all_remove-lieee.patch + 1.3 12 Jan 2018 + 98_all_libjava-ucontext.patch 1.2 27 Oct 2017