3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-10 17:25:55 +00:00

36 lines
547 B
Plaintext
Raw Normal View History

2021-05-27 00:09:36 +05:00
/* SPDX-License-Identifier: GPL-2.0 */
SECTIONS
{
.text :
{
__stext = . ;
__text = .;
*(.text..startup)
*(.text)
__etext = . ;
}
.rodata :
{
*(.rodata)
}
. = ALIGN(0x4) ;
.data :
{
. = ALIGN(0x4) ;
__sdata = . ;
___data_start = . ;
*(.data.*)
}
. = ALIGN(0x4) ;
.bss :
{
__sbss = . ;
*(.bss*)
. = ALIGN(0x4) ;
__ebss = . ;
}
_end = . ;
}