Recognize sparclite as a sparc variant.
This commit is contained in:
parent
a0fffd0d45
commit
dfd53fe988
2 changed files with 17 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue