Blame SOURCES/binutils-gold-warn-unsupported.patch

d1152b
Only in binutils-2.34/gold: autom4te.cache
d1152b
diff -rup binutils.orig/gold/configure binutils-2.34/gold/configure
d1152b
--- binutils.orig/gold/configure	2020-04-20 12:35:13.048297305 +0100
d1152b
+++ binutils-2.34/gold/configure	2020-04-20 14:02:06.743725696 +0100
d1152b
@@ -5180,7 +5180,8 @@ for targ in $target $canon_targets; do
d1152b
     . ${srcdir}/configure.tgt
d1152b
 
d1152b
     if test "$targ_obj" = "UNKNOWN"; then
d1152b
-      as_fn_error $? "\"unsupported target $targ\"" "$LINENO" 5
d1152b
+      { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \"unsupported target $targ\"" >&5
d1152b
+$as_echo "$as_me: WARNING: \"unsupported target $targ\"" >&2;}
d1152b
     else
d1152b
       targetobjs="$targetobjs ${targ_obj}.\$(OBJEXT)"
d1152b
       if test "$targ_extra_obj" != ""; then
d1152b
diff -rup binutils.orig/gold/configure.ac binutils-2.34/gold/configure.ac
d1152b
--- binutils.orig/gold/configure.ac	2020-04-20 12:35:13.050297291 +0100
d1152b
+++ binutils-2.34/gold/configure.ac	2020-04-20 14:01:46.435868770 +0100
d1152b
@@ -181,7 +181,7 @@ for targ in $target $canon_targets; do
d1152b
     . ${srcdir}/configure.tgt
d1152b
 
d1152b
     if test "$targ_obj" = "UNKNOWN"; then
d1152b
-      AC_MSG_ERROR("unsupported target $targ")
d1152b
+      AC_MSG_WARN("unsupported target $targ")
d1152b
     else
d1152b
       targetobjs="$targetobjs ${targ_obj}.\$(OBJEXT)"
d1152b
       if test "$targ_extra_obj" != ""; then
d1152b
--- binutils.orig/ld/configure.tgt	2020-04-20 12:35:12.465301359 +0100
d1152b
+++ binutils-2.34/ld/configure.tgt	2020-04-20 14:17:52.123066333 +0100
d1152b
@@ -220,7 +220,7 @@ bfin-*-linux-uclibc*)	targ_emul=elf32bfi
d1152b
 			targ_extra_emuls="elf32bfin"
d1152b
 			targ_extra_libpath=$targ_extra_emuls
d1152b
 			;;
d1152b
-bpf-*-*)		targ_emul=elf64bpf
d1152b
+bpf-* | bpf-*-*)	targ_emul=elf64bpf
d1152b
 			;;
d1152b
 cr16-*-elf*)		targ_emul=elf32cr16
d1152b
 			;;
d1152b
@@ -1026,7 +1026,7 @@ z8k-*-coff)		targ_emul=z8002
d1152b
 			targ_extra_ofiles=
d1152b
 			;;
d1152b
 *)
d1152b
-  echo 2>&1 "*** ld does not support target ${targ}"
d1152b
+  echo 2>&1 "*** ld does not support target '${targ}' NO REALLY"
d1152b
   echo 2>&1 "*** see ld/configure.tgt for supported targets"
d1152b
   exit 1
d1152b
 
d1152b
--- binutils.orig/bfd/config.bfd	2020-04-20 12:35:13.038297375 +0100
d1152b
+++ binutils-2.34/bfd/config.bfd	2020-04-20 14:25:26.452869193 +0100
d1152b
@@ -473,7 +473,7 @@ case "${targ}" in
d1152b
     ;;
d1152b
 
d1152b
 #ifdef BFD64
d1152b
-  bpf-*-none)
d1152b
+  bpf-*-none | bpf-*)
d1152b
     targ_defvec=bpf_elf64_le_vec
d1152b
     targ_selvecs=bpf_elf64_be_vec
d1152b
     targ_underscore=yes
d1152b
@@ -1427,7 +1427,7 @@ case "${targ}" in
d1152b
     ;;
d1152b
 
d1152b
   *)
d1152b
-    echo 1>&2 "*** BFD does not support target ${targ}."
d1152b
+    echo 1>&2 "*** BFD does not support target '${targ}'.  Honest."
d1152b
     echo 1>&2 "*** Look in bfd/config.bfd for supported targets."
d1152b
     exit 1
d1152b
     ;;