mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-23 13:21:43 +08:00
12 lines
150 B
Perl
12 lines
150 B
Perl
|
SECTIONS
|
||
|
{
|
||
|
.text 0x0000000: { *(.text) }
|
||
|
.data :
|
||
|
{
|
||
|
PROVIDE (__data_start = .);
|
||
|
*(.data)
|
||
|
}
|
||
|
__data_end = .;
|
||
|
/DISCARD/ : { *(.*) }
|
||
|
}
|