* configure.in (m68k-*-gnu*): New target. From Aymeric Vincent

<aymeric.vincent@emi.u-bordeaux.fr>.
	* aclocal.m4: Rebuild with current tools.
	* configure: Rebuild.
This commit is contained in:
Ian Lance Taylor 1998-12-06 21:48:34 +00:00
parent 955e17b0de
commit 44be43971b
3 changed files with 251 additions and 180 deletions

View file

@ -1,5 +1,10 @@
Sun Dec 6 12:46:36 1998 Ian Lance Taylor <ian@cygnus.com>
* configure.in (m68k-*-gnu*): New target. From Aymeric Vincent
<aymeric.vincent@emi.u-bordeaux.fr>.
* aclocal.m4: Rebuild with current tools.
* configure: Rebuild.
* config/tc-alpha.c (emit_ldgp): Give an error message rather than
an assertion failure for a case we can't handle when OBJ_ECOFF.

405
gas/configure vendored

File diff suppressed because it is too large Load diff

View file

@ -150,7 +150,9 @@ changequote([,])dnl
dvp-*-*) fmt=elf bfd_gas=yes install_tooldir= ;;
# end-sanitize-sky
# start-sanitize-fr30
fr30-*-*) fmt=elf bfd_gas=yes ;;
# end-sanitize-fr30
hppa-*-*elf*) fmt=elf em=hppa ;;
hppa-*-lites*) fmt=elf em=hppa ;;
@ -225,6 +227,7 @@ dnl end-sanitize-beos
m68k-*-hpux*) fmt=hp300 em=hp300 ;;
m68k-*-linux*aout*) fmt=aout em=linux ;;
m68k-*-linux-gnu*) fmt=elf em=linux ;;
m68k-*-gnu*) fmt=elf ;;
m68k-*-lynxos*) fmt=coff em=lynx ;;
m68k-*-netbsd*) fmt=aout em=nbsd bfd_gas=yes ;;
m68k-*-openbsd*) fmt=aout em=nbsd bfd_gas=yes ;;
@ -375,7 +378,7 @@ dnl end-sanitize-beos
esac
case ${cpu_type} in
m32r | fr30)
m32r)
case "x${extra_objects}" in
*cgen.o*) ;;
*) extra_objects="$extra_objects cgen.o"
@ -384,6 +387,17 @@ dnl end-sanitize-beos
esac
;;
# start-sanitize-fr30
fr30)
case "x${extra_objects}" in
*cgen.o*) ;;
*) extra_objects="$extra_objects cgen.o"
AC_DEFINE(USING_CGEN)
;;
esac
;;
# end-sanitize-fr30
m68k)
case ${extra_objects} in
*m68k-parse.o*) ;;
@ -731,7 +745,10 @@ AC_OUTPUT(Makefile doc/Makefile .gdbinit:gdbinit.in po/Makefile.in:po/Make-in,
echo '#include "te-'"${te_file}"'.h"' > targ-env.h
echo '#include "itbl-'"${target_cpu_type}"'.h"' > itbl-cpu.h
case ${target_cpu_type} in
m32r | fr30) echo '#include "opcodes/'"${target_cpu_type}"'-opc.h"' > cgen-opc.h ;;
m32r) echo '#include "opcodes/'"${target_cpu_type}"'-opc.h"' > cgen-opc.h ;;
# start-sanitize-fr30
fr30) echo '#include "opcodes/'"${target_cpu_type}"'-opc.h"' > cgen-opc.h ;;
# end-sanitize-fr30
esac
sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile],