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 4DEDC138359 for ; Fri, 28 Aug 2020 19:03:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8197CE0A6D; Fri, 28 Aug 2020 19:03:18 +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 67D4CE0A6D for ; Fri, 28 Aug 2020 19:03:18 +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 55C90340A12 for ; Fri, 28 Aug 2020 19:03:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D9A4338 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: <1598641353.8c55e39248c6290c15762fc0ae6e8aae93ff0df1.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/105_all_plugin-objdump.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: 8c55e39248c6290c15762fc0ae6e8aae93ff0df1 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: f7708dc5-9dff-4f81-879c-772d14443b72 X-Archives-Hash: 53df3daee1086a1c9a2f2196e9f29beb commit: 8c55e39248c6290c15762fc0ae6e8aae93ff0df1 Author: Sergei Trofimovich gentoo org> AuthorDate: Fri Aug 28 19:02:33 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Fri Aug 28 19:02:33 2020 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=8c55e392 4.9.4: backport 'objdump' lookup for plugins Signed-off-by: Sergei Trofimovich gentoo.org> 4.9.4/gentoo/105_all_plugin-objdump.patch | 34 +++++++++++++++++++++++++++++++ 4.9.4/gentoo/README.history | 3 +++ 2 files changed, 37 insertions(+) diff --git a/4.9.4/gentoo/105_all_plugin-objdump.patch b/4.9.4/gentoo/105_all_plugin-objdump.patch new file mode 100644 index 0000000..a9c33fd --- /dev/null +++ b/4.9.4/gentoo/105_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/4.9.4/gentoo/README.history b/4.9.4/gentoo/README.history index db046cd..fe06197 100644 --- a/4.9.4/gentoo/README.history +++ b/4.9.4/gentoo/README.history @@ -1,3 +1,6 @@ +4 TODO + + 105_all_plugin-objdump.patch + 3 1 Aug 2020 + 104_all_gcc-c++17.patch