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

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