From: Alexandre Oliva Date: Sat, 9 Feb 2002 03:25:25 +0000 (+0000) Subject: * configure.in : Enable sh64 support on sh-*. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ce7aaa36f9b6a9075d19aa5463f9196c8e713971;p=pf3gnuchains%2Fpf3gnuchains3x.git * configure.in : Enable sh64 support on sh-*. * configure: Rebuilt. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index c91f70b7b4..fef1903927 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2002-02-08 Alexandre Oliva + + * configure.in : Enable sh64 support on sh-*. + * configure: Rebuilt. + 2002-02-08 Ivan Guzvinec * or32-opc.c: Fix compile time warning messages. diff --git a/opcodes/configure b/opcodes/configure index 84de642c98..892ffa39b0 100755 --- a/opcodes/configure +++ b/opcodes/configure @@ -4619,8 +4619,10 @@ if test x${all_targets} = xfalse ; then bfd_s390_arch) ta="$ta s390-dis.lo s390-opc.lo" ;; bfd_sh_arch) # We can't decide what we want just from the CPU family. + # We want SH5 support unless a specific version of sh is + # specified, as in sh3-elf, sh3b-linux-gnu, etc. case " $target $canon_targets " in - *" all "* | *" sh64-"* ) + *" all "* | *" sh64-"* | *" sh-"* | *" shl-"*) ta="$ta sh64-dis.lo sh64-opc.lo" archdefs="$archdefs -DINCLUDE_SHMEDIA";; esac; diff --git a/opcodes/configure.in b/opcodes/configure.in index d98968841b..587422b6d9 100644 --- a/opcodes/configure.in +++ b/opcodes/configure.in @@ -210,8 +210,10 @@ if test x${all_targets} = xfalse ; then bfd_s390_arch) ta="$ta s390-dis.lo s390-opc.lo" ;; bfd_sh_arch) # We can't decide what we want just from the CPU family. + # We want SH5 support unless a specific version of sh is + # specified, as in sh3-elf, sh3b-linux-gnu, etc. case " $target $canon_targets " in - *" all "* | *" sh64-"* ) + *" all "* | *" sh64-"* | *" sh-"* | *" shl-"*) ta="$ta sh64-dis.lo sh64-opc.lo" archdefs="$archdefs -DINCLUDE_SHMEDIA";; esac;