mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-12-19 01:19:41 +08:00
This reverts commit 675b9d612c.
See https://sourceware.org/pipermail/binutils/2023-August/128761.html.
13 lines
162 B
Raku
13 lines
162 B
Raku
SECTIONS
|
|
{
|
|
.text 0: { *(.text .pr) }
|
|
.data 0x200:
|
|
{
|
|
__data_start = . ;
|
|
*(.data)
|
|
}
|
|
__data_end = .;
|
|
.bss : { *(.bss) }
|
|
/DISCARD/ : { *(*) }
|
|
}
|