mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 19:14:52 +08:00
94bb04b3c6
* Makefile.am (eelf64bmip.c): Depend on emulparams/elf64bmip-defs.sh. (eelf64btsmip.c, eelf64ltsmip.c): Likewise. * Makefile.in: Regenerate. * emulparams/elf32bmipn32-defs.sh (INITIAL_READONLY_SECTIONS): Include .reginfo rather than .MIPS.options. * emulparams/elf64bmip-defs.sh: New file. * emulparams/elf64bmip.sh: Include it. (COMMONPAGESIZE): Delete. * emulparams/elf64btsmip.sh: As for elf64bmip.sh. ld/testsuite/ * ld-mips-elf/branch-misc-1.d: Set the start address to 0x20000000. * ld-mips-elf/jalbal.d: Likewise 0x200000a0. * ld-mips-elf/jaloverflow-2.d: Likewise 0x20000000. * ld-mips-elf/reloc-3-n32.d: Likewise. * ld-mips-elf/reloc-3.d: Likewise. * ld-mips-elf/textrel-1.d: Don't require a specific file offset for .dynamic.
24 lines
838 B
Bash
Executable File
24 lines
838 B
Bash
Executable File
. ${srcdir}/emulparams/elf64bmip-defs.sh
|
|
OUTPUT_FORMAT="elf64-bigmips"
|
|
BIG_OUTPUT_FORMAT="elf64-bigmips"
|
|
LITTLE_OUTPUT_FORMAT="elf64-littlemips"
|
|
SHLIB_TEXT_START_ADDR=0x3ffffe0000
|
|
|
|
# IRIX6 defines these symbols. 0x40 is the size of the ELF header.
|
|
EXECUTABLE_SYMBOLS="
|
|
__dso_displacement = 0;
|
|
${CREATE_SHLIB-${CREATE_PIE-__elf_header = ${TEXT_START_ADDR};}}
|
|
${CREATE_SHLIB+__elf_header = ${SHLIB_TEXT_START_ADDR};}
|
|
${CREATE_PIE+__elf_header = ${SHLIB_TEXT_START_ADDR};}
|
|
__program_header_table = __elf_header + 0x40;
|
|
"
|
|
|
|
# There are often dynamic relocations against the .rodata section.
|
|
# Setting DT_TEXTREL in the .dynamic section does not convince the
|
|
# IRIX6 linker to permit relocations against the text segment.
|
|
# Following the IRIX linker, we simply put .rodata in the data
|
|
# segment.
|
|
WRITABLE_RODATA=
|
|
|
|
EXTRA_EM_FILE=irix
|