Optimize samples build process and build 64 bit binaries by default (#90)
* Optimize samples build process * Samples: build 64 bit version by default
This commit is contained in:
@ -98,7 +98,11 @@
|
||||
#define APP_HEAP_SIZE_MAX (1024 * 1024)
|
||||
|
||||
/* Default wasm stack size of each app */
|
||||
#ifdef __x86_64__
|
||||
#define DEFAULT_WASM_STACK_SIZE (12 * 1024)
|
||||
#else
|
||||
#define DEFAULT_WASM_STACK_SIZE (8 * 1024)
|
||||
#endif
|
||||
|
||||
/* Default/min/max stack size of each app thread */
|
||||
#ifndef __ZEPHYR__
|
||||
|
||||
Reference in New Issue
Block a user