blob: a9c33fd2b846181713854f1fc04fb0b887aac77a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
|