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