From c4c3cd5ca5fe13724253d4270dc643fbc6b7f557 Mon Sep 17 00:00:00 2001
From: David Seifert <soap@gentoo.org>
Date: Wed, 1 Jun 2022 17:21:44 -0400
Subject: [PATCH] [PATCH] configure: use OBJDUMP determined by libtool
 [PR95648]

$ac_cv_prog_OBJDUMP contains the --host OBJDUMP that
libtool has inferred. Current config/gcc-plugin.m4 does
not respect the user's choice for OBJDUMP.

	PR plugins/95648
config/

	* gcc-plugin.m4: Use libtool's $ac_cv_prog_OBJDUMP.

gcc/

	* configure: Regenerate.

libcc1/

	* configure: Regenerate.
---
 config/gcc-plugin.m4 | 2 +-
 gcc/configure        | 2 +-
 libcc1/configure     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/config/gcc-plugin.m4 b/config/gcc-plugin.m4
index 7ee342fe5fea..2ccb9ca7258a 100644
--- 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
diff --git a/gcc/configure b/gcc/configure
index ba3a998cae1f..32f74ab92ed1 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -31725,7 +31725,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/libcc1/configure b/libcc1/configure
index 01cfb2806da6..6dd91a086e67 100755
--- a/libcc1/configure
+++ b/libcc1/configure
@@ -15034,7 +15034,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
-- 
GitLab