mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 14:59:39 +02:00
[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.
This commit is contained in:
@@ -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
|
||||
|
||||
2
gcc/configure
vendored
2
gcc/configure
vendored
@@ -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
|
||||
|
||||
2
libcc1/configure
vendored
2
libcc1/configure
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user