From c61f17c7d047e8c9cbb2cc0a787900fc4b7e89af Mon Sep 17 00:00:00 2001 From: Kristian Sloth Lauszus Date: Sun, 6 May 2018 15:14:08 +0200 Subject: [PATCH] Added _pvHeapStart entry This is needed for Semihosting --- devices/MKL03Z4/gcc/MKL03Z32xxx4_flash.ld | 1 + 1 file changed, 1 insertion(+) diff --git a/devices/MKL03Z4/gcc/MKL03Z32xxx4_flash.ld b/devices/MKL03Z4/gcc/MKL03Z32xxx4_flash.ld index 72c5fc0..a2221c0 100644 --- a/devices/MKL03Z4/gcc/MKL03Z32xxx4_flash.ld +++ b/devices/MKL03Z4/gcc/MKL03Z32xxx4_flash.ld @@ -238,6 +238,7 @@ SECTIONS . = ALIGN(8); __end__ = .; PROVIDE(end = .); + _pvHeapStart = .; /* Add for _sbrk */ __HeapBase = .; . += HEAP_SIZE; __HeapLimit = .;