LLVM upgraded to release 13, hldig upgraded to snapshot 20210616_9427c9cd
[dragora.git] / patches / binutils / binutils-gold-warn-unsupported.patch
blob8e00aa3dedf3c023ca14acd5f01dbfd59cd20e04
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
8 if test "$targ_obj" = "UNKNOWN"; then
9 - as_fn_error $? "\"unsupported target $targ\"" "$LINENO" 5
10 + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \"unsupported target $targ\"" >&5
11 +$as_echo "$as_me: WARNING: \"unsupported target $targ\"" >&2;}
12 else
13 targetobjs="$targetobjs ${targ_obj}.\$(OBJEXT)"
14 if test "$targ_extra_obj" != ""; then
15 diff -rup binutils.orig/gold/configure.ac binutils-2.34/gold/configure.ac
16 --- binutils.orig/gold/configure.ac 2020-04-20 12:35:13.050297291 +0100
17 +++ binutils-2.34/gold/configure.ac 2020-04-20 14:01:46.435868770 +0100
18 @@ -181,7 +181,7 @@ for targ in $target $canon_targets; do
19 . ${srcdir}/configure.tgt
21 if test "$targ_obj" = "UNKNOWN"; then
22 - AC_MSG_ERROR("unsupported target $targ")
23 + AC_MSG_WARN("unsupported target $targ")
24 else
25 targetobjs="$targetobjs ${targ_obj}.\$(OBJEXT)"
26 if test "$targ_extra_obj" != ""; then
27 --- binutils.orig/ld/configure.tgt 2020-04-20 12:35:12.465301359 +0100
28 +++ binutils-2.34/ld/configure.tgt 2020-04-20 14:17:52.123066333 +0100
29 @@ -220,7 +220,7 @@ bfin-*-linux-uclibc*) targ_emul=elf32bfi
30 targ_extra_emuls="elf32bfin"
31 targ_extra_libpath=$targ_extra_emuls
33 -bpf-*-*) targ_emul=elf64bpf
34 +bpf-* | bpf-*-*) targ_emul=elf64bpf
36 cr16-*-elf*) targ_emul=elf32cr16
38 @@ -1026,7 +1026,7 @@ z8k-*-coff) targ_emul=z8002
39 targ_extra_ofiles=
42 - echo 2>&1 "*** ld does not support target ${targ}"
43 + echo 2>&1 "*** ld does not support target '${targ}' NO REALLY"
44 echo 2>&1 "*** see ld/configure.tgt for supported targets"
45 exit 1
47 --- binutils.orig/bfd/config.bfd 2020-04-20 12:35:13.038297375 +0100
48 +++ binutils-2.34/bfd/config.bfd 2020-04-20 14:25:26.452869193 +0100
49 @@ -473,7 +473,7 @@ case "${targ}" in
52 #ifdef BFD64
53 - bpf-*-none)
54 + bpf-*-none | bpf-*)
55 targ_defvec=bpf_elf64_le_vec
56 targ_selvecs=bpf_elf64_be_vec
57 targ_underscore=yes
58 @@ -1427,7 +1427,7 @@ case "${targ}" in
62 - echo 1>&2 "*** BFD does not support target ${targ}."
63 + echo 1>&2 "*** BFD does not support target '${targ}'. Honest."
64 echo 1>&2 "*** Look in bfd/config.bfd for supported targets."
65 exit 1