mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-21 01:12:32 +08:00
9 lines
142 B
Plaintext
9 lines
142 B
Plaintext
SECTIONS
|
|
{
|
|
.text : { *(.text) }
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) *(COMMON) }
|
|
.note : { *(.note) }
|
|
.reginfo : { *(.reginfo) }
|
|
}
|