diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-08-01 07:40:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-08-01 07:40:20 +0000 |
commit | 7dffa371e27308374f15c1f63d11bef582a20f4c (patch) | |
tree | b5403fa58c1777998d1756660104197990ebd82b /gnu/usr.bin/binutils | |
parent | 814efada3bbc6e71ca43a5de8a86d8d7f149500a (diff) |
A working gcc 2.95/m88k compiler, for some low standard value of working.
Configuration settings mostly borrowed from the former gcc 2.8 configuration.
A few typos and fixes backported from gcc 3.3, and a hell lot of fixes from
my fingertips.
This is enough to yield a compiler which will produce correct code at -O0.
Optimization is slightly broken for some constructs, and more fixes are in
the pipeline.
ok deraadt@
Diffstat (limited to 'gnu/usr.bin/binutils')
-rw-r--r-- | gnu/usr.bin/binutils/gas/configure | 1 | ||||
-rw-r--r-- | gnu/usr.bin/binutils/gas/configure.in | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gnu/usr.bin/binutils/gas/configure b/gnu/usr.bin/binutils/gas/configure index 919a621f8bd..1c7bd2a2dc4 100644 --- a/gnu/usr.bin/binutils/gas/configure +++ b/gnu/usr.bin/binutils/gas/configure @@ -2434,6 +2434,7 @@ EOF m88k-motorola-sysv3*) fmt=coff em=delt88 ;; m88k-*-coff*) fmt=coff ;; + m88k-*-openbsd*) fmt=aout em=delt88 ;; mcore-*-elf) fmt=elf bfd_gas=yes ;; mcore-*-pe) fmt=coff em=pe bfd_gas=yes ;; diff --git a/gnu/usr.bin/binutils/gas/configure.in b/gnu/usr.bin/binutils/gas/configure.in index 0ff9767cf44..04d25159ec8 100644 --- a/gnu/usr.bin/binutils/gas/configure.in +++ b/gnu/usr.bin/binutils/gas/configure.in @@ -326,6 +326,7 @@ changequote([,])dnl m88k-motorola-sysv3*) fmt=coff em=delt88 ;; m88k-*-coff*) fmt=coff ;; + m88k-*-openbsd*) fmt=aout em=delt88 ;; mcore-*-elf) fmt=elf bfd_gas=yes ;; mcore-*-pe) fmt=coff em=pe bfd_gas=yes ;; |