mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-08-17 07:36:35 -05:00
add rel.got to linkscripts
This commit is contained in:
@@ -117,7 +117,7 @@ SECTIONS
|
||||
. = ALIGN(4); /* REQUIRED. LD is flaky without it. */
|
||||
} >iwram = 0xff
|
||||
.jcr : { KEEP (*(.jcr)) } >iwram = 0
|
||||
.got : { *(.got.plt) *(.got) } >iwram = 0
|
||||
.got : { *(.got.plt) *(.got) *(.rel.got) } >iwram = 0
|
||||
|
||||
|
||||
.iwram ALIGN(4) :
|
||||
|
||||
@@ -120,7 +120,7 @@ SECTIONS
|
||||
. = ALIGN(4); /* REQUIRED. LD is flaky without it. */
|
||||
} >ewram = 0xff
|
||||
.jcr : { KEEP (*(.jcr)) } >ewram = 0
|
||||
.got : { *(.got.plt) *(.got) } >ewram = 0
|
||||
.got : { *(.got.plt) *(.got) *(.rel.got) } >ewram = 0
|
||||
|
||||
.ewram ALIGN(4) :
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user