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

e89428
diff -rupN --no-dereference binutils-2.37/bfd/config.bfd binutils-2.37-new/bfd/config.bfd
e89428
--- binutils-2.37/bfd/config.bfd	2021-07-08 13:37:19.000000000 +0200
e89428
+++ binutils-2.37-new/bfd/config.bfd	2021-07-24 21:59:24.914746464 +0200
e89428
@@ -465,7 +465,7 @@ case "${targ}" in
e89428
     ;;
e89428
 
e89428
 #ifdef BFD64
e89428
-  bpf-*-none)
e89428
+  bpf-*-none | bpf-*)
e89428
     targ_defvec=bpf_elf64_le_vec
e89428
     targ_selvecs=bpf_elf64_be_vec
e89428
     targ_underscore=yes
e89428
@@ -1421,7 +1421,7 @@ case "${targ}" in
e89428
     ;;
e89428
 
e89428
   *)
e89428
-    echo 1>&2 "*** BFD does not support target ${targ}."
e89428
+    echo 1>&2 "*** BFD does not support target '${targ}'.  Honest."
e89428
     echo 1>&2 "*** Look in bfd/config.bfd for supported targets."
e89428
     exit 1
e89428
     ;;
e89428
diff -rupN --no-dereference binutils-2.37/gold/configure binutils-2.37-new/gold/configure
e89428
--- binutils-2.37/gold/configure	2021-07-18 18:40:53.000000000 +0200
e89428
+++ binutils-2.37-new/gold/configure	2021-07-24 21:59:24.917746435 +0200
e89428
@@ -5184,7 +5184,8 @@ for targ in $target $canon_targets; do
e89428
     . ${srcdir}/configure.tgt
e89428
 
e89428
     if test "$targ_obj" = "UNKNOWN"; then
e89428
-      as_fn_error $? "\"unsupported target $targ\"" "$LINENO" 5
e89428
+      { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \"unsupported target $targ\"" >&5
e89428
+$as_echo "$as_me: WARNING: \"unsupported target $targ\"" >&2;}
e89428
     else
e89428
       targetobjs="$targetobjs ${targ_obj}.\$(OBJEXT)"
e89428
       if test "$targ_extra_obj" != ""; then
e89428
diff -rupN --no-dereference binutils-2.37/gold/configure.ac binutils-2.37-new/gold/configure.ac
e89428
--- binutils-2.37/gold/configure.ac	2021-07-08 13:37:20.000000000 +0200
e89428
+++ binutils-2.37-new/gold/configure.ac	2021-07-24 21:59:24.918746425 +0200
e89428
@@ -181,7 +181,7 @@ for targ in $target $canon_targets; do
e89428
     . ${srcdir}/configure.tgt
e89428
 
e89428
     if test "$targ_obj" = "UNKNOWN"; then
e89428
-      AC_MSG_ERROR("unsupported target $targ")
e89428
+      AC_MSG_WARN("unsupported target $targ")
e89428
     else
e89428
       targetobjs="$targetobjs ${targ_obj}.\$(OBJEXT)"
e89428
       if test "$targ_extra_obj" != ""; then
e89428
diff -rupN --no-dereference binutils-2.37/ld/configure.tgt binutils-2.37-new/ld/configure.tgt
e89428
--- binutils-2.37/ld/configure.tgt	2021-07-08 13:37:20.000000000 +0200
e89428
+++ binutils-2.37-new/ld/configure.tgt	2021-07-24 21:59:24.919746416 +0200
e89428
@@ -215,7 +215,7 @@ bfin-*-linux-uclibc*)	targ_emul=elf32bfi
e89428
 			targ_extra_emuls="elf32bfin"
e89428
 			targ_extra_libpath=$targ_extra_emuls
e89428
 			;;
e89428
-bpf-*-*)		targ_emul=elf64bpf
e89428
+bpf-* | bpf-*-*)	targ_emul=elf64bpf
e89428
 			;;
e89428
 cr16-*-elf*)		targ_emul=elf32cr16
e89428
 			;;
e89428
@@ -1025,7 +1025,7 @@ z8k-*-coff)		targ_emul=z8002
e89428
 			targ_extra_ofiles=
e89428
 			;;
e89428
 *)
e89428
-  echo 2>&1 "*** ld does not support target ${targ}"
e89428
+  echo 2>&1 "*** ld does not support target '${targ}' NO REALLY"
e89428
   echo 2>&1 "*** see ld/configure.tgt for supported targets"
e89428
   exit 1
e89428