3ffe58d945
emulation name. Set LIB_PATH only for native tools, and search the ABI-specific versions of NATIVE_LIB_DIRS before the .../lib variants, not instead of them. Mostly copied from... * emulparams/elf32ppc.sh: ... here. Fixed typo. * emulparams/elf64bmip-defs.sh: Backed out. * emulparams/elf64bmip.sh: Import elf32bmipn32-defs.sh again. * emulparams/elf64btsmip.sh: Likewise. (DATA_ADDR, NONPAGED_TEXT_START_ADDR, SHLIB_TEXT_START_ADDR, TEXT_DYNAMIC): Removed.
19 lines
646 B
Bash
Executable File
19 lines
646 B
Bash
Executable File
. ${srcdir}/emulparams/elf32bmipn32-defs.sh
|
|
OUTPUT_FORMAT="elf64-bigmips"
|
|
BIG_OUTPUT_FORMAT="elf64-bigmips"
|
|
LITTLE_OUTPUT_FORMAT="elf64-littlemips"
|
|
|
|
# IRIX6 defines these symbols. 0x40 is the size of the ELF header.
|
|
EXECUTABLE_SYMBOLS="
|
|
__dso_displacement = 0;
|
|
__elf_header = ${TEXT_START_ADDR};
|
|
__program_header_table = ${TEXT_START_ADDR} + 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=
|