diff options
author | Steve Chamberlain <sac@cygnus> | 1992-04-05 01:47:16 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-04-05 01:47:16 +0000 |
commit | 9d1fe8a4103b93f4de17d0f80b3b80c687811754 (patch) | |
tree | ca7bbfe6215e66290ae02cbec26ae6ebd494af43 /ld/configure.in | |
parent | b2de19e3c671f63d86cebe2ec18584e2518db071 (diff) | |
download | gdb-9d1fe8a4103b93f4de17d0f80b3b80c687811754.zip gdb-9d1fe8a4103b93f4de17d0f80b3b80c687811754.tar.gz gdb-9d1fe8a4103b93f4de17d0f80b3b80c687811754.tar.bz2 |
New lexer.
New targets for h8/300 simulator and DOS
Diffstat (limited to 'ld/configure.in')
-rw-r--r-- | ld/configure.in | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/ld/configure.in b/ld/configure.in index 5632173..8e24810 100644 --- a/ld/configure.in +++ b/ld/configure.in @@ -56,6 +56,7 @@ i386) case "${host_vendor}" in *) case "${host_os}" in + go32) my_host=go32 ;; sysv) my_host=i386v ;; mach) my_host=i386mach ;; bsd) my_host=i386-aout ;; @@ -91,7 +92,7 @@ vax) esac # Set up to make a link between the host's include file and "sysdep.h". -files="../bfd/hosts/h-${my_host}.h" +files="../bfd/hosts/${my_host}.h" links="sysdep.h" if [ ! -f ${srcdir}/${files} ] ; then @@ -102,8 +103,8 @@ if [ ! -f ${srcdir}/${files} ] ; then exit 1 fi host_makefile_frag= -if [ -f ${srcdir}/config/mh-${my_host} ] ; then - host_makefile_frag=${srcdir}/config/mh-${my_host} +if [ -f ${srcdir}/config/${my_host}.mh ] ; then + host_makefile_frag=config/${my_host}.mh fi # per-target: @@ -116,19 +117,34 @@ sun) m68k) my_target=sun3 ;; esac ;; +wrs) + case ${target_cpu} in + i960) my_target=vxworks960 ;; + m68k) my_target=vxworks68;; + esac + ;; +tandem) + my_target=sun3 + ;; *) case ${target_cpu} in + i386) my_target=go32 ;; m88k) my_target=m88k-bcs ;; a29k) case ${target_os} in ebmon) my_target=ebmon29k ;; *) my_target=coff-a29k ;; esac ;; - h8300) my_target=coff-h8300 ;; + h8300) case ${target_os} in + hms) my_target=coff-h8300 ;; + xray) my_target=ieee-h8300 ;; + esac + ;; m68k) case ${target_vendor} in sony) my_target=news ;; hp) my_target=hp300bsd ;; + wrs) my_target=sun3 ;; *) echo "Unknown m68k target vendor:" ${target_vendor} @@ -140,4 +156,4 @@ sun) ;; esac -target_makefile_frag=${srcdir}/config/mt-${my_target} +target_makefile_frag=config/${my_target}.mt |