mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 19:09:31 +08:00
* configure.in: Make Tahoe configuration work again.
* bfd-in.h: Remove trailing comma from enum declaration. * ieee.c: Can't put byte values >0x7F into a signed char.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
Thu Jan 30 01:19:56 1992 John Gilmore (gnu at cygnus.com)
|
||||||
|
|
||||||
|
* configure.in: Make Tahoe configuration work again.
|
||||||
|
* bfd-in.h: Remove trailing comma from enum declaration.
|
||||||
|
* ieee.c: Can't put byte values >0x7F into a signed char.
|
||||||
|
|
||||||
Tue Jan 28 21:10:51 1992 Fred Fish (fnf at cygnus.com)
|
Tue Jan 28 21:10:51 1992 Fred Fish (fnf at cygnus.com)
|
||||||
|
|
||||||
* Makefile.in: Add dependencies for various coff-*.o files.
|
* Makefile.in: Add dependencies for various coff-*.o files.
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
configdirs="doc"
|
configdirs="doc"
|
||||||
srctrigger=libbfd.c
|
srctrigger=libbfd.c
|
||||||
srcname="BFD"
|
srcname="BFD"
|
||||||
|
target_dependent=true
|
||||||
|
|
||||||
# per-host:
|
# per-host:
|
||||||
|
|
||||||
@ -40,7 +41,7 @@ m68k)
|
|||||||
cbm)
|
cbm)
|
||||||
case ${host_os} in
|
case ${host_os} in
|
||||||
amigados) my_host=amigados ;;
|
amigados) my_host=amigados ;;
|
||||||
svr4) my_host=amix ;;
|
sysv4*) my_host=amix ;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
hp)
|
hp)
|
||||||
@ -54,12 +55,15 @@ m68k)
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
i860) my_host=stratus
|
||||||
|
;;
|
||||||
|
|
||||||
i386)
|
i386)
|
||||||
case "${host_vendor}" in
|
case "${host_vendor}" in
|
||||||
*)
|
*)
|
||||||
case "${host_os}" in
|
case "${host_os}" in
|
||||||
|
sysv4*) my_host=i386v4 ;;
|
||||||
sysv*) my_host=i386v ;;
|
sysv*) my_host=i386v ;;
|
||||||
svr4*) my_host=i386v4 ;;
|
|
||||||
mach*) my_host=i386mach ;;
|
mach*) my_host=i386mach ;;
|
||||||
msdos*) my_host=dose ;;
|
msdos*) my_host=dose ;;
|
||||||
esac
|
esac
|
||||||
@ -96,16 +100,16 @@ esac
|
|||||||
files="hosts/h-${my_host}.h"
|
files="hosts/h-${my_host}.h"
|
||||||
links="sysdep.h"
|
links="sysdep.h"
|
||||||
|
|
||||||
if [ ! -f ${files} ] ; then
|
if [ ! -f ${srcdir}/${files} ] ; then
|
||||||
if [ -n "${my_host}" ] ; then
|
if [ -n "${my_host}" ] ; then
|
||||||
echo '***' No file ${files}
|
echo '***' No file ${srcdir}/${files}
|
||||||
fi
|
fi
|
||||||
echo '***' ${srcname} does not support host ${host}
|
echo '***' ${srcname} does not support host ${host}
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
host_makefile_frag=
|
host_makefile_frag=
|
||||||
if [ -f config/mh-${my_host} ] ; then
|
if [ -f ${srcdir}/config/mh-${my_host} ] ; then
|
||||||
host_makefile_frag=config/mh-${my_host}
|
host_makefile_frag=config/mh-${my_host}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -115,7 +119,18 @@ case "${target_vendor}" in
|
|||||||
aout | coff | bout | elf) bfd_target=${target_cpu}-${target_vendor} ;;
|
aout | coff | bout | elf) bfd_target=${target_cpu}-${target_vendor} ;;
|
||||||
sony) bfd_target=news ;;
|
sony) bfd_target=news ;;
|
||||||
intel) bfd_target=${target_cpu}-coff ;;
|
intel) bfd_target=${target_cpu}-coff ;;
|
||||||
cbm | ncr) bfd_target=${target_cpu}-elf ;;
|
stratus | cbm | ncr) bfd_target=${target_cpu}-elf ;;
|
||||||
|
|
||||||
|
unknown)
|
||||||
|
case "${target_os}" in
|
||||||
|
bsd) bfd_target=${target_cpu}-aout ;;
|
||||||
|
sysv4*) bfd_target=${target_cpu}-elf ;;
|
||||||
|
sysv*) bfd_target=${target_cpu}-coff ;;
|
||||||
|
none) case "${target_cpu}" in
|
||||||
|
tahoe | vax) bfd_target=${target_cpu} ;;
|
||||||
|
esac
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
|
||||||
ibm) my_host=rs6000
|
ibm) my_host=rs6000
|
||||||
case "${target_cpu}" in
|
case "${target_cpu}" in
|
||||||
@ -202,9 +217,9 @@ motorola)
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [ ! -f config/mt-${bfd_target} ] ; then
|
if [ ! -f ${srcdir}/config/mt-${bfd_target} ] ; then
|
||||||
if [ -n "${bfd_target}" ] ; then
|
if [ -n "${bfd_target}" ] ; then
|
||||||
echo '***' No file config/mt-${bfd_target}
|
echo '***' No file ${srcdir}/config/mt-${bfd_target}
|
||||||
fi
|
fi
|
||||||
echo '***' BFD does not support target ${target}
|
echo '***' BFD does not support target ${target}
|
||||||
echo '***' Look in bfd/configure.in for supported targets
|
echo '***' Look in bfd/configure.in for supported targets
|
||||||
|
Reference in New Issue
Block a user