mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
ensure correct address for __bss_start__
This commit is contained in:
parent
6602c440b4
commit
2d2d0d8d60
@ -134,7 +134,6 @@ SECTIONS
|
|||||||
SORT(CONSTRUCTORS)
|
SORT(CONSTRUCTORS)
|
||||||
} :data
|
} :data
|
||||||
|
|
||||||
__bss_start__ = .;
|
|
||||||
.bss ALIGN(8) :
|
.bss ALIGN(8) :
|
||||||
{
|
{
|
||||||
*(.dynbss)
|
*(.dynbss)
|
||||||
@ -147,7 +146,8 @@ SECTIONS
|
|||||||
. += + SIZEOF(.tdata) + SIZEOF(.tbss);
|
. += + SIZEOF(.tdata) + SIZEOF(.tbss);
|
||||||
__tls_end = .;
|
__tls_end = .;
|
||||||
} : data
|
} : data
|
||||||
__bss_end__ = .;
|
__bss_start__ = ADDR(.bss);
|
||||||
|
__bss_end__ = ADDR(.bss) + SIZEOF(.bss);
|
||||||
|
|
||||||
__end__ = ABSOLUTE(.) ;
|
__end__ = ABSOLUTE(.) ;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user