7fd91fe0bb
* elf32-mips.c: Expand comment about ABI-mandated pagesize values. (ELF_MAXPAGESIZE, ELF_COMMONPAGESIZE): define in a more obvious way. * elf64-mips.c, elfn32-mips.c (ELF_MAXPAGESIZE): Fix value for IRIX6. Delete old comments. (ELF_COMMONPAGESIZE): Define in a more obvious way. [ ld/ChangeLog ] * emulparams/elf64bmip.sh, emulparams/elf64btsmip.sh (COMMONPAGESIZE): Define. [ ld/testsuite/ChangeLog ] * ld-mips-elf/multi-got-no-shared.d: Adjust for recent change of ELF_MAXPAGESIZE.
24 lines
884 B
Bash
Executable file
24 lines
884 B
Bash
Executable file
. ${srcdir}/emulparams/elf32bmipn32-defs.sh
|
|
OUTPUT_FORMAT="elf64-bigmips"
|
|
BIG_OUTPUT_FORMAT="elf64-bigmips"
|
|
LITTLE_OUTPUT_FORMAT="elf64-littlemips"
|
|
SHLIB_TEXT_START_ADDR=0x3ffffe0000
|
|
COMMONPAGESIZE="CONSTANT (COMMONPAGESIZE)"
|
|
|
|
# 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
|