From c603d10360c51952fa8b5b80924ea58bd249681a Mon Sep 17 00:00:00 2001 From: SaeHie Park Date: Wed, 24 Jun 2015 07:05:56 +0900 Subject: [PATCH] Adjust nuttx heap size to 80K JerryScript-DCO-1.0-Signed-off-by: SaeHie Park saehie.park@samsung.com --- jerry-core/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jerry-core/CMakeLists.txt b/jerry-core/CMakeLists.txt index d60195849c..b33115d3b2 100644 --- a/jerry-core/CMakeLists.txt +++ b/jerry-core/CMakeLists.txt @@ -80,8 +80,8 @@ project (JerryCore CXX C ASM) # Platform-specific # Linux # Nuttx - math(EXPR MEM_HEAP_AREA_SIZE_16K "16 * 1024") - set(DEFINES_JERRY_NUTTX CONFIG_MEM_HEAP_AREA_SIZE=${MEM_HEAP_AREA_SIZE_16K}) + math(EXPR MEM_HEAP_AREA_SIZE_80K "80 * 1024") + set(DEFINES_JERRY_NUTTX CONFIG_MEM_HEAP_AREA_SIZE=${MEM_HEAP_AREA_SIZE_80K}) # MCU # stm32f3 math(EXPR MEM_HEAP_AREA_SIZE_16K "16 * 1024")