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 558D1138334 for ; Thu, 4 Apr 2019 07:03:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FDEEE078A; Thu, 4 Apr 2019 07:03:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4D764E078A for ; Thu, 4 Apr 2019 07:03:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 16633335CE4 for ; Thu, 4 Apr 2019 07:03:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8425AA8 for ; Thu, 4 Apr 2019 07:03:19 +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: <1554361056.6480d86a84ad176452fa3b269570f372bcf84d6e.slyfox@gentoo> Subject: [gentoo-commits] proj/gcc-patches:master commit in: 8.3.0/gentoo/ X-VCS-Repository: proj/gcc-patches X-VCS-Files: 8.3.0/gentoo/27_all_flto-make-all.patch 8.3.0/gentoo/README.history X-VCS-Directories: 8.3.0/gentoo/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 6480d86a84ad176452fa3b269570f372bcf84d6e X-VCS-Branch: master Date: Thu, 4 Apr 2019 07:03:19 +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: b1f07418-b00f-4bd7-8518-f66a528a4a02 X-Archives-Hash: 98fb4fe8a495296d3c069f82d91d07c8 commit: 6480d86a84ad176452fa3b269570f372bcf84d6e Author: Sergei Trofimovich gentoo org> AuthorDate: Thu Apr 4 06:57:36 2019 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Thu Apr 4 06:57:36 2019 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=6480d86a 8.3.0: backport -flto=2 build failure on isl (all.c) Reported-by: Fabio Coatti Bug: https://gcc.gnu.org/PR89896 Bug: https://bugs.gentoo.org/682018 Signed-off-by: Sergei Trofimovich gentoo.org> 8.3.0/gentoo/27_all_flto-make-all.patch | 31 +++++++++++++++++++++++++++++++ 8.3.0/gentoo/README.history | 1 + 2 files changed, 32 insertions(+) diff --git a/8.3.0/gentoo/27_all_flto-make-all.patch b/8.3.0/gentoo/27_all_flto-make-all.patch new file mode 100644 index 0000000..abfe2f8 --- /dev/null +++ b/8.3.0/gentoo/27_all_flto-make-all.patch @@ -0,0 +1,31 @@ +https://gcc.gnu.org/PR89896 +https://bugs.gentoo.org/682018 + +From e5e34c317c02b16cef2c6c71a18e4b1a358b626c Mon Sep 17 00:00:00 2001 +From: rguenth +Date: Wed, 3 Apr 2019 08:46:35 +0000 +Subject: [PATCH] 2019-04-03 Richard Biener + + PR lto/89896 + * lto-wrapper.c (run_gcc): Avoid implicit rules making + the all target phony. + + +git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-8-branch@270113 138bc75d-0d04-0410-961f-82ee72b054a4 +--- +--- a/gcc/lto-wrapper.c ++++ b/gcc/lto-wrapper.c +@@ -1669,7 +1669,9 @@ cont: + struct pex_obj *pex; + char jobs[32]; + +- fprintf (mstream, "all:"); ++ fprintf (mstream, ++ ".PHONY: all\n" ++ "all:"); + for (i = 0; i < nr; ++i) + { + int j = ltrans_priorities[i*2 + 1]; +-- +2.21.0 + diff --git a/8.3.0/gentoo/README.history b/8.3.0/gentoo/README.history index c1e5bb1..1a755db 100644 --- a/8.3.0/gentoo/README.history +++ b/8.3.0/gentoo/README.history @@ -1,5 +1,6 @@ 1.1 TODO + 26_all_overridable_native.patch + + 27_all_flto-make-all.patch 1.0 22 Feb 2019 + 01_all_default-fortify-source.patch