mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
16 lines
216 B
Plaintext
16 lines
216 B
Plaintext
|
ENTRY (__start)
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text :
|
||
|
{
|
||
|
*(.text .text.*)
|
||
|
*(.gnu_extab .gnu_extab.*)
|
||
|
}
|
||
|
.eh_frame_hdr :
|
||
|
{
|
||
|
KEEP (*(.eh_frame_hdr))
|
||
|
*(.eh_frame_entry .eh_frame_entry.*)
|
||
|
}
|
||
|
.data : {*(.data) }
|
||
|
}
|