diff options
author | 2018-04-09 01:02:01 +0200 | |
---|---|---|
committer | 2018-04-09 01:02:01 +0200 | |
commit | 0f4484b52348467158b9af691cd5fc5930eac205 (patch) | |
tree | 455b5915dee15eff13804b90c9bac50427c1521c | |
parent | e9c8547fcadeecfc09a659f0ded28f7f84376563 (diff) | |
download | cortex-m-0f4484b52348467158b9af691cd5fc5930eac205.tar.gz cortex-m-0f4484b52348467158b9af691cd5fc5930eac205.tar.zst cortex-m-0f4484b52348467158b9af691cd5fc5930eac205.zip |
restore PROVIDE(_stack_start)
it wasn't mean to be removed -- it's not related to the stack overflow protection stuff
-rw-r--r-- | cortex-m-rt/link.x | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cortex-m-rt/link.x b/cortex-m-rt/link.x index 2bfcb47..7e398de 100644 --- a/cortex-m-rt/link.x +++ b/cortex-m-rt/link.x @@ -12,7 +12,7 @@ EXTERN(EXCEPTIONS); object file that's passed to the linker *before* this crate */ EXTERN(INTERRUPTS); -_stack_start = ORIGIN(RAM) + LENGTH(RAM); +PROVIDE(_stack_start = ORIGIN(RAM) + LENGTH(RAM)); SECTIONS { |