diff options
author | Thiemo Seufer <ths@networkno.de> | 2002-07-30 23:48:30 +0000 |
---|---|---|
committer | Thiemo Seufer <ths@networkno.de> | 2002-07-30 23:48:30 +0000 |
commit | 7808a785c5986903ac6dd4220f185fdcf62b0190 (patch) | |
tree | 2631713c36feceaddaeca5ac5481c21b58e6a967 /ld/configure.tgt | |
parent | 574e6d11bc0c4eaf59d4d2a278fef67013895506 (diff) | |
download | gdb-7808a785c5986903ac6dd4220f185fdcf62b0190.zip gdb-7808a785c5986903ac6dd4220f185fdcf62b0190.tar.gz gdb-7808a785c5986903ac6dd4220f185fdcf62b0190.tar.bz2 |
* Makefile.am (eelf32btsmipn32.o, eelf32ltsmipn32.o): New emulations
for n32 ABI support.
* Makefile.in: Regenerate.
* configure.tgt (mips64*el-*-linux-gnu*,mips64*-*-linux-gnu*): Add
n32 ABI emulations for these 64 bit targets.
* emulparams/elf32bmipn32.sh: Expand comment.
* emulparams/elf32btsmipn32.sh: New file, for traditional big endian
n32 ABI.
* emulparams/elf32ltsmipn32.sh: Likewise for little endian.
Diffstat (limited to 'ld/configure.tgt')
-rw-r--r-- | ld/configure.tgt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ld/configure.tgt b/ld/configure.tgt index 0a24b11..a144123 100644 --- a/ld/configure.tgt +++ b/ld/configure.tgt @@ -389,6 +389,12 @@ mips*el-*-rtems*) targ_emul=elf32elmip ;; mips*-*-rtems*) targ_emul=elf32ebmip ;; mips*el-*-vxworks*) targ_emul=elf32elmip ;; mips*-*-vxworks*) targ_emul=elf32ebmip ;; +mips64*el-*-linux-gnu*) targ_emul=elf32ltsmipn32 + targ_extra_emuls="elf32btsmipn32 elf32ltsmip elf32btsmip elf64ltsmip elf64btsmip" + ;; +mips64*-*-linux-gnu*) targ_emul=elf32btsmipn32 + targ_extra_emuls="elf32ltsmipn32 elf32btsmip elf32ltsmip elf64btsmip elf64ltsmip" + ;; mips*el-*-linux-gnu*) targ_emul=elf32ltsmip targ_extra_emuls="elf32btsmip elf64ltsmip elf64btsmip" ;; |