Skip to content

Commit 0f4484b

Browse files
committed
restore PROVIDE(_stack_start)
it wasn't mean to be removed -- it's not related to the stack overflow protection stuff
1 parent e9c8547 commit 0f4484b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cortex-m-rt/link.x

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ EXTERN(EXCEPTIONS);
1212
object file that's passed to the linker *before* this crate */
1313
EXTERN(INTERRUPTS);
1414

15-
_stack_start = ORIGIN(RAM) + LENGTH(RAM);
15+
PROVIDE(_stack_start = ORIGIN(RAM) + LENGTH(RAM));
1616

1717
SECTIONS
1818
{

0 commit comments

Comments
 (0)