mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 04:00:07 +08:00
* 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:
@ -1,5 +1,10 @@
|
|||||||
Sun Dec 6 12:46:36 1998 Ian Lance Taylor <ian@cygnus.com>
|
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
|
* 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.
|
an assertion failure for a case we can't handle when OBJ_ECOFF.
|
||||||
|
|
||||||
|
405
gas/configure
vendored
405
gas/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -150,7 +150,9 @@ changequote([,])dnl
|
|||||||
dvp-*-*) fmt=elf bfd_gas=yes install_tooldir= ;;
|
dvp-*-*) fmt=elf bfd_gas=yes install_tooldir= ;;
|
||||||
# end-sanitize-sky
|
# end-sanitize-sky
|
||||||
|
|
||||||
|
# start-sanitize-fr30
|
||||||
fr30-*-*) fmt=elf bfd_gas=yes ;;
|
fr30-*-*) fmt=elf bfd_gas=yes ;;
|
||||||
|
# end-sanitize-fr30
|
||||||
|
|
||||||
hppa-*-*elf*) fmt=elf em=hppa ;;
|
hppa-*-*elf*) fmt=elf em=hppa ;;
|
||||||
hppa-*-lites*) 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-*-hpux*) fmt=hp300 em=hp300 ;;
|
||||||
m68k-*-linux*aout*) fmt=aout em=linux ;;
|
m68k-*-linux*aout*) fmt=aout em=linux ;;
|
||||||
m68k-*-linux-gnu*) fmt=elf em=linux ;;
|
m68k-*-linux-gnu*) fmt=elf em=linux ;;
|
||||||
|
m68k-*-gnu*) fmt=elf ;;
|
||||||
m68k-*-lynxos*) fmt=coff em=lynx ;;
|
m68k-*-lynxos*) fmt=coff em=lynx ;;
|
||||||
m68k-*-netbsd*) fmt=aout em=nbsd bfd_gas=yes ;;
|
m68k-*-netbsd*) fmt=aout em=nbsd bfd_gas=yes ;;
|
||||||
m68k-*-openbsd*) 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
|
esac
|
||||||
|
|
||||||
case ${cpu_type} in
|
case ${cpu_type} in
|
||||||
m32r | fr30)
|
m32r)
|
||||||
case "x${extra_objects}" in
|
case "x${extra_objects}" in
|
||||||
*cgen.o*) ;;
|
*cgen.o*) ;;
|
||||||
*) extra_objects="$extra_objects cgen.o"
|
*) extra_objects="$extra_objects cgen.o"
|
||||||
@ -384,6 +387,17 @@ dnl end-sanitize-beos
|
|||||||
esac
|
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)
|
m68k)
|
||||||
case ${extra_objects} in
|
case ${extra_objects} in
|
||||||
*m68k-parse.o*) ;;
|
*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 "te-'"${te_file}"'.h"' > targ-env.h
|
||||||
echo '#include "itbl-'"${target_cpu_type}"'.h"' > itbl-cpu.h
|
echo '#include "itbl-'"${target_cpu_type}"'.h"' > itbl-cpu.h
|
||||||
case ${target_cpu_type} in
|
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
|
esac
|
||||||
|
|
||||||
sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile],
|
sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile],
|
||||||
|
Reference in New Issue
Block a user