mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-13 15:05:46 +00:00
7808a785c5
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.
18 lines
498 B
Bash
18 lines
498 B
Bash
# If you change this file, please also look at files which source this one:
|
|
# elf32ltsmipn32.sh
|
|
|
|
. ${srcdir}/emulparams/elf32bmipn32.sh
|
|
OUTPUT_FORMAT="elf32-ntradbigmips"
|
|
BIG_OUTPUT_FORMAT="elf32-ntradbigmips"
|
|
LITTLE_OUTPUT_FORMAT="elf32-ntradlittlemips"
|
|
|
|
unset EXECUTABLE_SYMBOLS
|
|
unset WRITABLE_RODATA
|
|
|
|
# Magic sections.
|
|
OTHER_TEXT_SECTIONS='*(.mips16.fn.*) *(.mips16.call.*)'
|
|
OTHER_SECTIONS='
|
|
.gptab.sdata : { *(.gptab.data) *(.gptab.sdata) }
|
|
.gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) }
|
|
'
|