mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
fusee-secondary: don't create 3GiB output files :)
This commit is contained in:
parent
75dfcd07a9
commit
5065a04451
1 changed files with 3 additions and 1 deletions
|
@ -105,6 +105,7 @@ SECTIONS
|
|||
.chainloader :
|
||||
{
|
||||
. = ALIGN(32);
|
||||
PROVIDE (__chainloader_start = .);
|
||||
KEEP(*(.chainloader.text.start))
|
||||
build/chainloader.o(.text*)
|
||||
build/chainloader.o(.rodata*)
|
||||
|
@ -112,7 +113,8 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
build/chainloader.o(.bss*)
|
||||
. = ALIGN(32);
|
||||
} >low_iram
|
||||
PROVIDE (__chainloader_end = .);
|
||||
} >low_iram AT>main
|
||||
|
||||
.bss :
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue