binutils-gold-warn-unsupported.patch 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. Only in binutils-2.34/gold: autom4te.cache
  2. diff -rup binutils.orig/gold/configure binutils-2.34/gold/configure
  3. --- binutils.orig/gold/configure 2020-04-20 12:35:13.048297305 +0100
  4. +++ binutils-2.34/gold/configure 2020-04-20 14:02:06.743725696 +0100
  5. @@ -5180,7 +5180,8 @@ for targ in $target $canon_targets; do
  6. . ${srcdir}/configure.tgt
  7. if test "$targ_obj" = "UNKNOWN"; then
  8. - as_fn_error $? "\"unsupported target $targ\"" "$LINENO" 5
  9. + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \"unsupported target $targ\"" >&5
  10. +$as_echo "$as_me: WARNING: \"unsupported target $targ\"" >&2;}
  11. else
  12. targetobjs="$targetobjs ${targ_obj}.\$(OBJEXT)"
  13. if test "$targ_extra_obj" != ""; then
  14. diff -rup binutils.orig/gold/configure.ac binutils-2.34/gold/configure.ac
  15. --- binutils.orig/gold/configure.ac 2020-04-20 12:35:13.050297291 +0100
  16. +++ binutils-2.34/gold/configure.ac 2020-04-20 14:01:46.435868770 +0100
  17. @@ -181,7 +181,7 @@ for targ in $target $canon_targets; do
  18. . ${srcdir}/configure.tgt
  19. if test "$targ_obj" = "UNKNOWN"; then
  20. - AC_MSG_ERROR("unsupported target $targ")
  21. + AC_MSG_WARN("unsupported target $targ")
  22. else
  23. targetobjs="$targetobjs ${targ_obj}.\$(OBJEXT)"
  24. if test "$targ_extra_obj" != ""; then
  25. --- binutils.orig/ld/configure.tgt 2020-04-20 12:35:12.465301359 +0100
  26. +++ binutils-2.34/ld/configure.tgt 2020-04-20 14:17:52.123066333 +0100
  27. @@ -220,7 +220,7 @@ bfin-*-linux-uclibc*) targ_emul=elf32bfi
  28. targ_extra_emuls="elf32bfin"
  29. targ_extra_libpath=$targ_extra_emuls
  30. ;;
  31. -bpf-*-*) targ_emul=elf64bpf
  32. +bpf-* | bpf-*-*) targ_emul=elf64bpf
  33. ;;
  34. cr16-*-elf*) targ_emul=elf32cr16
  35. ;;
  36. @@ -1026,7 +1026,7 @@ z8k-*-coff) targ_emul=z8002
  37. targ_extra_ofiles=
  38. ;;
  39. *)
  40. - echo 2>&1 "*** ld does not support target ${targ}"
  41. + echo 2>&1 "*** ld does not support target '${targ}' NO REALLY"
  42. echo 2>&1 "*** see ld/configure.tgt for supported targets"
  43. exit 1
  44. --- binutils.orig/bfd/config.bfd 2020-04-20 12:35:13.038297375 +0100
  45. +++ binutils-2.34/bfd/config.bfd 2020-04-20 14:25:26.452869193 +0100
  46. @@ -473,7 +473,7 @@ case "${targ}" in
  47. ;;
  48. #ifdef BFD64
  49. - bpf-*-none)
  50. + bpf-*-none | bpf-*)
  51. targ_defvec=bpf_elf64_le_vec
  52. targ_selvecs=bpf_elf64_be_vec
  53. targ_underscore=yes
  54. @@ -1427,7 +1427,7 @@ case "${targ}" in
  55. ;;
  56. *)
  57. - echo 1>&2 "*** BFD does not support target ${targ}."
  58. + echo 1>&2 "*** BFD does not support target '${targ}'. Honest."
  59. echo 1>&2 "*** Look in bfd/config.bfd for supported targets."
  60. exit 1
  61. ;;