1 # This is an ELF platform.
4 # Handle both big- and little-ended 32-bit MIPS objects.
6 OUTPUT_FORMAT
="elf64-bigmips"
7 BIG_OUTPUT_FORMAT
="elf64-bigmips"
8 LITTLE_OUTPUT_FORMAT
="elf64-littlemips"
10 # Note that the elf32 template is used for 64-bit emulations as well
11 # as 32-bit emulations.
15 TEXT_START_ADDR
=0x10000000
19 # GOT-related settings.
21 _gp = ALIGN(16) + 0x7ff0;
26 .srdata : { *(.srdata) }
30 TEXT_START_SYMBOLS
='_ftext = . ;'
31 DATA_START_SYMBOLS
='_fdata = . ;'
32 OTHER_BSS_SYMBOLS
='_fbss = .;'
33 # IRIX6 defines these symbols. 0x40 is the size of the ELF header.
35 __dso_displacement = 0;
36 __elf_header = ${TEXT_START_ADDR};
37 __program_header_table = ${TEXT_START_ADDR} + 0x40;
40 # There are often dynamic relocations against the .rodata section.
41 # Setting DT_TEXTREL in the .dynamic section does not convince the
42 # IRIX6 linker to permit relocations against the text segment.
43 # Following the IRIX linker, we simply put .rodata in the data
48 OTHER_RELOCATING_SECTIONS
='
52 *(.MIPS.events.gnu.linkonce.t*)
57 *(.MIPS.content.gnu.linkonce.t*)
62 *(.MIPS.events.gnu.linkonce.d*)
67 *(.MIPS.content.gnu.linkonce.d*)
71 *(.MIPS.events.rodata)
72 *(.MIPS.events.gnu.linkonce.r*)
74 .MIPS.content.rodata :
76 *(.MIPS.content.rodata)
77 *(.MIPS.content.gnu.linkonce.r*)