From e06a154294de8a1a30472e7f9422b8b539665d30 Mon Sep 17 00:00:00 2001 From: Stefan Kalkowski Date: Fri, 7 Jun 2013 10:29:57 +0200 Subject: [PATCH] Add __initial_sp variable to base-hw specific crt0 Fixes #756 --- base-hw/src/platform/arm/crt0.s | 3 +++ 1 file changed, 3 insertions(+) diff --git a/base-hw/src/platform/arm/crt0.s b/base-hw/src/platform/arm/crt0.s index 94c54d922..093f9b0d6 100644 --- a/base-hw/src/platform/arm/crt0.s +++ b/base-hw/src/platform/arm/crt0.s @@ -33,6 +33,9 @@ .global __dso_handle __dso_handle: .long 0 + .global __initial_sp + __initial_sp: .long 0 + .section .bss /* main-thread stack */