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 08ADC138359 for ; Fri, 24 Jul 2020 09:01:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21FA3E0823; Fri, 24 Jul 2020 09:01:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 067C7E0823 for ; Fri, 24 Jul 2020 09:01:40 +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 ACC9D34F162 for ; Fri, 24 Jul 2020 09:01:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B58F29A for ; Fri, 24 Jul 2020 09:01:37 +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: <1595581188.dd1d98b2d98f4b5b4015cd31fe41311ee9eb9549.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/104_all_gcc-c++17.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: dd1d98b2d98f4b5b4015cd31fe41311ee9eb9549 X-VCS-Branch: master Date: Fri, 24 Jul 2020 09:01:37 +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: 1e560a1c-061f-4bcc-9765-2c8e301452e7 X-Archives-Hash: b5a680cc17039ff0b7be9eb901b592d4 commit: dd1d98b2d98f4b5b4015cd31fe41311ee9eb9549 Author: Sergei Trofimovich gentoo org> AuthorDate: Fri Jul 24 08:59:48 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Fri Jul 24 08:59:48 2020 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=dd1d98b2 4.9.4: tweak to build against gcc-11 One new patch: + 104_all_gcc-c++17.patch: avoid use of '++' on 'bool'. Signed-off-by: Sergei Trofimovich gentoo.org> 4.9.4/gentoo/104_all_gcc-c++17.patch | 12 ++++++++++++ 4.9.4/gentoo/README.history | 3 +++ 2 files changed, 15 insertions(+) diff --git a/4.9.4/gentoo/104_all_gcc-c++17.patch b/4.9.4/gentoo/104_all_gcc-c++17.patch new file mode 100644 index 0000000..d940d4c --- /dev/null +++ b/4.9.4/gentoo/104_all_gcc-c++17.patch @@ -0,0 +1,12 @@ +Fix compatibility with c++17 +--- a/gcc/reload.h ++++ b/gcc/reload.h +@@ -168,7 +168,7 @@ struct target_reload { + value indicates the level of indirect addressing supported, e.g., two + means that (MEM (MEM (REG n))) is also valid if (REG n) does not get + a hard register. */ +- bool x_spill_indirect_levels; ++ unsigned char x_spill_indirect_levels; + + /* True if caller-save has been reinitialized. */ + bool x_caller_save_initialized_p; diff --git a/4.9.4/gentoo/README.history b/4.9.4/gentoo/README.history index 12ffe1f..34868a4 100644 --- a/4.9.4/gentoo/README.history +++ b/4.9.4/gentoo/README.history @@ -1,3 +1,6 @@ +3 TODO + + 104_all_gcc-c++17.patch + 2 29 May 2020 + 102_all_ustat-sparc.patch + 103_all_whitespace-pa.patch