diff options
author | Jim Wilson <wilson@tuliptree.org> | 1992-05-28 18:22:42 +0000 |
---|---|---|
committer | Jim Wilson <wilson@tuliptree.org> | 1992-05-28 18:22:42 +0000 |
commit | dfd53fe988ac0fb092fd4bae50533c96fc20f077 (patch) | |
tree | ed5e98bb08068012253e20a9bb1dadd51bacb4ce | |
parent | a0fffd0d452d206b1f91c27b0f471aeb33f1fce9 (diff) | |
download | gdb-dfd53fe988ac0fb092fd4bae50533c96fc20f077.zip gdb-dfd53fe988ac0fb092fd4bae50533c96fc20f077.tar.gz gdb-dfd53fe988ac0fb092fd4bae50533c96fc20f077.tar.bz2 |
Recognize sparclite as a sparc variant.
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/configure.in | 14 |
2 files changed, 17 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 2f4bef6..a2c131b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +Thu May 28 11:22:02 1992 Jim Wilson (wilson@sphagnum.cygnus.com) + + * configure.in: Recognize sparclite as a sparc variant. + Tue May 26 16:47:56 1992 Steve Chamberlain (sac@thepub.cygnus.com) * config/tc-a29k.c: lint diff --git a/gas/configure.in b/gas/configure.in index b774b74..afd7ed9 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -86,8 +86,15 @@ aix*) bout*) obj_format=bout ;; nindy*) obj_format=bout ;; -bsd* | sunos*) obj_format=aout ;; +bsd* | sunos*) + obj_format=aout + emulation=sun3 ;; +udi) + obj_format=coffbfd + need_bfd="./../bfd/libbfd.a" + target_cpu=ebmon29k + ;; ebmon-old) obj_format=coff need_bfd="./../bfd/libbfd.a" @@ -156,6 +163,11 @@ vax) atof=vax ;; *) atof=ieee ;; esac +# check for architecture variants +case ${target_cpu} in +sparclite) cpu_type=sparc ;; +esac + # and target makefile frag target_makefile_frag=config/${target_cpu}.mt |