mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
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.
62 lines
1.6 KiB
Bash
62 lines
1.6 KiB
Bash
# If you change this file, please also look at files which source this one:
|
|
# elf64bmip.sh elf64btsmip.sh elf32btsmipn32.sh elf32bmipn32.sh
|
|
|
|
# This is an ELF platform.
|
|
SCRIPT_NAME=elf
|
|
|
|
# Handle both big- and little-ended 32-bit MIPS objects.
|
|
ARCH=mips
|
|
OUTPUT_FORMAT="elf32-bigmips"
|
|
BIG_OUTPUT_FORMAT="elf32-bigmips"
|
|
LITTLE_OUTPUT_FORMAT="elf32-littlemips"
|
|
|
|
TEMPLATE_NAME=elf32
|
|
LIB_PATH=/usr/lib32
|
|
|
|
GENERATE_SHLIB_SCRIPT=yes
|
|
|
|
TEXT_START_ADDR=0x10000000
|
|
MAXPAGESIZE=0x100000
|
|
ENTRY=__start
|
|
|
|
# GOT-related settings.
|
|
OTHER_GOT_SYMBOLS='
|
|
_gp = ALIGN(16) + 0x7ff0;
|
|
'
|
|
OTHER_SDATA_SECTIONS="
|
|
.lit8 ${RELOCATING-0} : { *(.lit8) }
|
|
.lit4 ${RELOCATING-0} : { *(.lit4) }
|
|
.srdata ${RELOCATING-0} : { *(.srdata) }
|
|
"
|
|
|
|
# Magic symbols.
|
|
TEXT_START_SYMBOLS='_ftext = . ;'
|
|
DATA_START_SYMBOLS='_fdata = . ;'
|
|
OTHER_BSS_SYMBOLS='_fbss = .;'
|
|
|
|
OTHER_SECTIONS="
|
|
.MIPS.events.text ${RELOCATING-0} :
|
|
{
|
|
*(.MIPS.events.text${RELOCATING+ .MIPS.events.gnu.linkonce.t*})
|
|
}
|
|
.MIPS.content.text ${RELOCATING-0} :
|
|
{
|
|
*(.MIPS.content.text${RELOCATING+ .MIPS.content.gnu.linkonce.t*})
|
|
}
|
|
.MIPS.events.data ${RELOCATING-0} :
|
|
{
|
|
*(.MIPS.events.data${RELOCATING+ .MIPS.events.gnu.linkonce.d*})
|
|
}
|
|
.MIPS.content.data ${RELOCATING-0} :
|
|
{
|
|
*(.MIPS.content.data${RELOCATING+ .MIPS.content.gnu.linkonce.d*})
|
|
}
|
|
.MIPS.events.rodata ${RELOCATING-0} :
|
|
{
|
|
*(.MIPS.events.rodata${RELOCATING+ .MIPS.events.gnu.linkonce.r*})
|
|
}
|
|
.MIPS.content.rodata ${RELOCATING-0} :
|
|
{
|
|
*(.MIPS.content.rodata${RELOCATING+ .MIPS.content.gnu.linkonce.r*})
|
|
}"
|