diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-02-25 19:30:22 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2000-02-25 19:30:22 +0000 |
commit | a1836d496fd417e73f24e85320408f3379900b1f (patch) | |
tree | 1f1df3f7b35a3aa639bbef32e880c32d756cb1be /ld | |
parent | 246c66877dae02515b91cf9d5b5d1a7b2667f484 (diff) | |
download | gdb-a1836d496fd417e73f24e85320408f3379900b1f.zip gdb-a1836d496fd417e73f24e85320408f3379900b1f.tar.gz gdb-a1836d496fd417e73f24e85320408f3379900b1f.tar.bz2 |
* configure.tgt: Enable elf64_sparc on Solaris7+/sparc. And make
it default if sparcv9 or sparc64.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/configure.tgt | 13 |
2 files changed, 18 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 7b2f851..e248104 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2000-02-25 Alexandre Oliva <oliva@lsd.ic.unicamp.br> + + * configure.tgt: Enable elf64_sparc on Solaris7+/sparc. And make + it default if sparcv9 or sparc64. + 2000-02-24 Nick Clifton <nickc@cygnus.com> * Makefile.am: Add rules to build emipspe.o and earmpe.o. diff --git a/ld/configure.tgt b/ld/configure.tgt index 00783e1..36482fc 100644 --- a/ld/configure.tgt +++ b/ld/configure.tgt @@ -53,6 +53,19 @@ sparc*-*-linux-gnu*) targ_emul=elf32_sparc ;; sparc*-*-lynxos*) targ_emul=sparclynx ;; sparc*-*-netbsd*) targ_emul=sparcnbsd ;; +sparc-*-solaris2.[0-6] | sparc-*-solaris2.[0-6].*) + targ_emul=elf32_sparc ;; +sparc-*-solaris2*) targ_emul=elf32_sparc + targ_extra_emuls="elf64_sparc" + targ_extra_libpath=$targ_extra_emuls + tdir_elf64_sparc=`echo ${targ_alias} | sed -e 's/32//'` + ;; +sparcv9-*-solaris2* | sparc64-*-solaris2*) + targ_emul=elf64_sparc + targ_extra_emuls="elf32_sparc" + targ_extra_libpath=$targ_extra_emuls + tdir_elf32_sparc=`echo ${targ_alias} | sed -e 's/64//'` + ;; sparc*-*-solaris2*) targ_emul=elf32_sparc ;; sparc*-wrs-vxworks*) targ_emul=sparcaout ;; sparc*-*-rtems*) targ_emul=sparcaout ;; |