mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
8c946ed5d5
(_bfd_elf_eh_frame_address_size): Declare. * elfxx-target.h (elf_backend_eh_frame_address_size): Define a default. (elfNN_bed): Initialize elf_backend_eh_frame_address_size. * elfxx-mips.h (_bfd_mips_elf_eh_frame_address_size): Declare. (elf_backend_eh_frame_address_size): Define. * elfxx-mips.c (_bfd_mips_elf_eh_frame_address_size): New function. * elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Get the address size from the new backend hook. (_bfd_elf_write_section_eh_frame): Likewise. (_bfd_elf_eh_frame_address_size): New function.
20 lines
347 B
Plaintext
20 lines
347 B
Plaintext
SECTIONS
|
|
{
|
|
. = 0x10000;
|
|
.dynamic : { *(.dynamic) }
|
|
.hash : { *(.hash) }
|
|
.dynsym : { *(.dynsym) }
|
|
.dynstr : { *(.dynstr) }
|
|
.rel.dyn : { *(.rel.dyn) }
|
|
|
|
. = 0x20000;
|
|
.text : { *(.text) }
|
|
|
|
. = 0x30000;
|
|
.eh_frame : { *(.eh_frame) }
|
|
.got : { *(.got) }
|
|
.gcc_compiled_long32 : { *(.gcc_compiled_long32) }
|
|
|
|
/DISCARD/ : { *(*) }
|
|
}
|