diff options
author | Ken Raeburn <raeburn@cygnus> | 1992-08-01 02:15:14 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1992-08-01 02:15:14 +0000 |
commit | 03bb29bf79563043589f82331d9258a1c2ccaec5 (patch) | |
tree | d294fe08af3e27834df98158aea306be93423fc0 /gas/configure.in | |
parent | c51ccfd50a4672eefaabfbdc34593edd9030674e (diff) | |
download | gdb-03bb29bf79563043589f82331d9258a1c2ccaec5.zip gdb-03bb29bf79563043589f82331d9258a1c2ccaec5.tar.gz gdb-03bb29bf79563043589f82331d9258a1c2ccaec5.tar.bz2 |
(&!@# CVS breakage...)
* configure.in (mips host): Accept "ultrix" with version number.
* expr.c (floating_constant): Separate "=-" to avoid confusing
ancient or broken compilers.
Diffstat (limited to 'gas/configure.in')
-rw-r--r-- | gas/configure.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gas/configure.in b/gas/configure.in index afd7ed9..dc94cc9 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -40,7 +40,7 @@ case "${host_cpu}" in a29k | rs6000 | vax) gas_host=${host_cpu} ;; mips) case "${host_os}" in - ultrix) gas_host=decstation ;; + ultrix*) gas_host=decstation ;; esac ;; i386) @@ -133,13 +133,17 @@ coff* | sysv*) vxworks) case ${target_cpu} in i960) obj_format=bout ;; - m68k) + m68k|m680[01234]0) obj_format=aout emulation=sun3 ;; *) obj_format=aout ;; esac ;; +OSE) + obj_format=aout + emulation=sun3 + ;; *) case ${target_vendor} in aout) obj_format=aout ;; @@ -166,6 +170,7 @@ esac # check for architecture variants case ${target_cpu} in sparclite) cpu_type=sparc ;; +m680[01234]0) cpu_type=m68k ;; esac # and target makefile frag |