mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-24 06:48:53 -05:00
tagged bss & sbss sections with correct memory section
This commit is contained in:
parent
eeed632c89
commit
27f1e4615f
|
|
@ -125,7 +125,7 @@ SECTIONS
|
|||
*(.gnu.linkonce.b*)
|
||||
*(COMMON)
|
||||
. = ALIGN(4); /* REQUIRED. LD is flaky without it. */
|
||||
}
|
||||
} >iwram
|
||||
|
||||
__bss_end = . ;
|
||||
__bss_end__ = . ;
|
||||
|
|
|
|||
|
|
@ -156,7 +156,7 @@ SECTIONS
|
|||
*(.gnu.linkonce.b*)
|
||||
*(COMMON)
|
||||
. = ALIGN(4); /* REQUIRED. LD is flaky without it. */
|
||||
}
|
||||
} >dtcm
|
||||
|
||||
__bss_end = . ;
|
||||
__bss_end__ = . ;
|
||||
|
|
@ -181,7 +181,7 @@ SECTIONS
|
|||
__sbss_start = ABSOLUTE(.);
|
||||
*(.sbss)
|
||||
. = ALIGN(4);
|
||||
}
|
||||
} >ewram
|
||||
__sbss_end = . ;
|
||||
|
||||
_end = . ;
|
||||
|
|
|
|||
|
|
@ -111,7 +111,7 @@ SECTIONS
|
|||
__sbss_start = ABSOLUTE(.);
|
||||
*(.sbss)
|
||||
. = ALIGN(4);
|
||||
}
|
||||
} >ewram
|
||||
__sbss_end = . ;
|
||||
|
||||
_end = . ;
|
||||
|
|
@ -154,7 +154,7 @@ SECTIONS
|
|||
*(.gnu.linkonce.b*)
|
||||
*(COMMON)
|
||||
. = ALIGN(4); /* REQUIRED. LD is flaky without it. */
|
||||
}
|
||||
} >iwram
|
||||
|
||||
__bss_end = . ;
|
||||
__bss_end__ = . ;
|
||||
|
|
|
|||
|
|
@ -169,7 +169,7 @@ SECTIONS
|
|||
*(.gnu.linkonce.b*)
|
||||
*(COMMON)
|
||||
. = ALIGN(4); /* REQUIRED. LD is flaky without it. */
|
||||
}
|
||||
} >iwram
|
||||
|
||||
__bss_end = . ;
|
||||
__bss_end__ = . ;
|
||||
|
|
@ -222,7 +222,7 @@ SECTIONS
|
|||
__sbss_start = ABSOLUTE(.);
|
||||
*(.sbss)
|
||||
. = ALIGN(4);
|
||||
}
|
||||
} >ewram
|
||||
|
||||
__sbss_end = .;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user