From f4c724639b8d230668c81761562cb390286cbb70 Mon Sep 17 00:00:00 2001 From: Martin Stein Date: Sun, 1 Dec 2013 22:20:04 +0100 Subject: [PATCH] arm: raise stack size of main thread With 64K stack size, when doing 'make core' in noux on base-hw, the main thread of /libexec/gcc/arm-elf-eabi/4.7.2/cc1plus runs into a stack overflow during the compilation of core/main.o . Thus raise the stack size to 128K. fix #964 --- base/src/platform/arm/crt0.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/src/platform/arm/crt0.s b/base/src/platform/arm/crt0.s index 6ab9e245ee..391ae0a2e4 100644 --- a/base/src/platform/arm/crt0.s +++ b/base/src/platform/arm/crt0.s @@ -35,7 +35,7 @@ __dso_handle: .long 0 .p2align 4 .globl _stack_low _stack_low: - .space 64*1024 + .space 128*1024 .globl _stack_high _stack_high: