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 76F0713835A 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 8F565E0A5B; 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 64D9DE0A5B for ; Fri, 28 Aug 2020 19:03:17 +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 EFD0F340AB3 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 74873335 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: <1598641327.9ab4da60a1985cd5893909d8391c41d7748a8333.slyfox@gentoo> Subject: [gentoo-commits] proj/gcc-patches:master commit in: 6.5.0/gentoo/ X-VCS-Repository: proj/gcc-patches X-VCS-Files: 6.5.0/gentoo/29_all_plugin-objdump.patch 6.5.0/gentoo/README.history X-VCS-Directories: 6.5.0/gentoo/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 9ab4da60a1985cd5893909d8391c41d7748a8333 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: 970c8c07-aeda-46bf-807c-e4450f13df14 X-Archives-Hash: 9c89f32937d81019c04cfe70c97b18ed commit: 9ab4da60a1985cd5893909d8391c41d7748a8333 Author: Sergei Trofimovich gentoo org> AuthorDate: Fri Aug 28 19:02:07 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Fri Aug 28 19:02:07 2020 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=9ab4da60 6.5.0: backport 'objdump' lookup for plugins Signed-off-by: Sergei Trofimovich gentoo.org> 6.5.0/gentoo/29_all_plugin-objdump.patch | 34 ++++++++++++++++++++++++++++++++ 6.5.0/gentoo/README.history | 3 +++ 2 files changed, 37 insertions(+) diff --git a/6.5.0/gentoo/29_all_plugin-objdump.patch b/6.5.0/gentoo/29_all_plugin-objdump.patch new file mode 100644 index 0000000..a9c33fd --- /dev/null +++ b/6.5.0/gentoo/29_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/6.5.0/gentoo/README.history b/6.5.0/gentoo/README.history index 6a5a3b6..ad18659 100644 --- a/6.5.0/gentoo/README.history +++ b/6.5.0/gentoo/README.history @@ -1,3 +1,6 @@ +6 TODO + + 29_all_plugin-objdump.patch + 5 15 July 2020 + 28_all_libjava-multilib.patch