e316b3a0ed
(GENERATE_SHLIB_SCRIPT): Set to yes. (EXECUTABLE_SYMBOLS, WRITABLE_RODATA): Moved to... * emulparams/elf32bmipn32.sh: here. (GENERATE_SHLIB_SCRIPT): Deleted as redundant. * emulparams/elf32btsmipn32.sh: Delete redundant unsets. * emulparams/elf64bmip-defs.sh: New file. Extend elf32bmipn32-defs.sh by overiding ELFSIZE and LIB_PATH. * emulparams/elf64bmip.sh: Bring in definitions from elf64bmip-defs.sh. (ELFSIZE, GENERATE_SHLIB_SCRIPT, LIB_PATH): Delete redundant settings. (WRITABLE_RODATA): Moved from elf32bmipn32-defs.sh. * emulparams/elf64btsmip.sh: Bring in definitions from elf64bmip-defs.sh. (ELFSIZE, GENERATE_SHLIB_SCRIPT): Delete, redundant. (EXECUTABLE_SYMBOLS, WRITABLE_RODATA): Delete redundant unsets.
19 lines
682 B
Bash
Executable file
19 lines
682 B
Bash
Executable file
. ${srcdir}/emulparams/elf32bmipn32-defs.sh
|
|
OUTPUT_FORMAT="elf32-nbigmips"
|
|
BIG_OUTPUT_FORMAT="elf32-nbigmips"
|
|
LITTLE_OUTPUT_FORMAT="elf32-nlittlemips"
|
|
SHLIB_TEXT_START_ADDR=0x5ffe0000
|
|
|
|
# IRIX6 defines these symbols. 0x34 is the size of the ELF header.
|
|
EXECUTABLE_SYMBOLS="
|
|
__dso_displacement = 0;
|
|
__elf_header = ${TEXT_START_ADDR};
|
|
__program_header_table = ${TEXT_START_ADDR} + 0x34;
|
|
"
|
|
|
|
# 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=
|