diff options
author | Chris Demetriou <cgd@google.com> | 2001-11-04 19:06:38 +0000 |
---|---|---|
committer | Chris Demetriou <cgd@google.com> | 2001-11-04 19:06:38 +0000 |
commit | 9fb9af6ef405a449cf46021a32ecf8631025b674 (patch) | |
tree | 2739aa0e8c97c89ba3f97d0c7078557c898b8876 /ld | |
parent | 3fb1c838041ad54d9182dc91b0304bfbd55968cb (diff) | |
download | gdb-9fb9af6ef405a449cf46021a32ecf8631025b674.zip gdb-9fb9af6ef405a449cf46021a32ecf8631025b674.tar.gz gdb-9fb9af6ef405a449cf46021a32ecf8631025b674.tar.bz2 |
[ gas/ChangeLog ]
2001-11-04 Chris Demetriou <cgd@broadcom.com>
* configure.in (mips-*-netbsd*): Add support for target.
* configure: Regenerate.
[ gas/testsuite/ChangeLog ]
2001-11-04 Chris Demetriou <cgd@broadcom.com>
* gas/mips/mips.exp (svr4pic): Set if target is *-*-netbsd*.
(aout): Don't set if *-*-netbsd*.
[ ld/ChangeLog ]
2001-11-04 Chris Demetriou <cgd@broadcom.com>
* configure.tgt (mips*el-*-netbsd*, mips*-*-netbsd*):
Add support for targets.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/configure.tgt | 8 |
2 files changed, 12 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 3b5e47e..ecc7577 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2001-11-04 Chris Demetriou <cgd@broadcom.com> + + * configure.tgt (mips*el-*-netbsd*, mips*-*-netbsd*): + Add support for targets. + 2001-11-02 Nick Clifton <nickc@cambridge.redhat.com> * configure.in (ALL_LINGUAS): Add "fr" and "sv" diff --git a/ld/configure.tgt b/ld/configure.tgt index f54064e..63d2fb7 100644 --- a/ld/configure.tgt +++ b/ld/configure.tgt @@ -287,7 +287,13 @@ mips*-sgi-irix*) targ_emul=mipsbig ;; mips*el-*-ecoff*) targ_emul=mipsidtl ;; mips*-*-ecoff*) targ_emul=mipsidt ;; mips*-dec-bsd*) targ_emul=mipsbsd ;; -mips*-dec-netbsd*) targ_emul=elf32lmip ;; +mips*-dec-netbsd* | mips*el-*-netbsd*) + targ_emul=elf32lmip + targ_extra_emuls="elf32bmip" + ;; +mips*-*-netbsd*) targ_emul=elf32bmip + targ_extra_emuls="elf32lmip" + ;; mips*-*-bsd*) targ_emul=mipsbig ;; mips*vr4300el-*-elf*) targ_emul=elf32l4300 ;; mips*vr4300-*-elf*) targ_emul=elf32b4300 ;; |