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 4101713835C for ; Fri, 28 Aug 2020 19:03:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47185E0A59; Fri, 28 Aug 2020 19:03:17 +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 2D6EBE0A59 for ; Fri, 28 Aug 2020 19:03:17 +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 BB205340A38 for ; Fri, 28 Aug 2020 19:03:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61D95332 for ; Fri, 28 Aug 2020 19:03:14 +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: <1598641310.68f0e3a9d047a02b937485d35fec84a06b90f3ae.slyfox@gentoo> Subject: [gentoo-commits] proj/gcc-patches:master commit in: 7.5.0/gentoo/ X-VCS-Repository: proj/gcc-patches X-VCS-Files: 7.5.0/gentoo/25_all_plugin-objdump.patch 7.5.0/gentoo/README.history X-VCS-Directories: 7.5.0/gentoo/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 68f0e3a9d047a02b937485d35fec84a06b90f3ae X-VCS-Branch: master Date: Fri, 28 Aug 2020 19:03:14 +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: 0c74a326-cf85-4bfd-a6a1-ede47ca1dc6e X-Archives-Hash: b6a0eaf3cfd48a2a6f45c0247344d7e7 commit: 68f0e3a9d047a02b937485d35fec84a06b90f3ae Author: Sergei Trofimovich gentoo org> AuthorDate: Fri Aug 28 19:01:50 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Fri Aug 28 19:01:50 2020 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=68f0e3a9 7.5.0: backport 'objdump' lookup for plugins Signed-off-by: Sergei Trofimovich gentoo.org> 7.5.0/gentoo/25_all_plugin-objdump.patch | 34 ++++++++++++++++++++++++++++++++ 7.5.0/gentoo/README.history | 3 +++ 2 files changed, 37 insertions(+) diff --git a/7.5.0/gentoo/25_all_plugin-objdump.patch b/7.5.0/gentoo/25_all_plugin-objdump.patch new file mode 100644 index 0000000..a9c33fd --- /dev/null +++ b/7.5.0/gentoo/25_all_plugin-objdump.patch @@ -0,0 +1,34 @@ +https://gcc.gnu.org/PR95648 +--- a/config/gcc-plugin.m4 ++++ b/config/gcc-plugin.m4 +@@ -45,7 +45,7 @@ AC_DEFUN([GCC_ENABLE_PLUGINS], + ;; + *) + if test x$build = x$host; then +- export_sym_check="objdump${exeext} -T" ++ export_sym_check="$ac_cv_prog_OBJDUMP -T" + elif test x$host = x$target; then + export_sym_check="$gcc_cv_objdump -T" + else +--- a/gcc/configure ++++ b/gcc/configure +@@ -30386,7 +30386,7 @@ fi + ;; + *) + if test x$build = x$host; then +- export_sym_check="objdump${exeext} -T" ++ export_sym_check="$ac_cv_prog_OBJDUMP -T" + elif test x$host = x$target; then + export_sym_check="$gcc_cv_objdump -T" + else +--- a/libcc1/configure ++++ b/libcc1/configure +@@ -14819,7 +14819,7 @@ fi + ;; + *) + if test x$build = x$host; then +- export_sym_check="objdump${exeext} -T" ++ export_sym_check="$ac_cv_prog_OBJDUMP -T" + elif test x$host = x$target; then + export_sym_check="$gcc_cv_objdump -T" + else diff --git a/7.5.0/gentoo/README.history b/7.5.0/gentoo/README.history index 2903122..356642c 100644 --- a/7.5.0/gentoo/README.history +++ b/7.5.0/gentoo/README.history @@ -1,3 +1,6 @@ +4 TODO + + 25_all_plugin-objdump.patch + 3 29 May 2020 + 24_all_libcpp-ar.patch