mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
Fixing LIBC_MUSL build for ARM Linux host (adjusting heap limit under LIBC_MUSL).
This commit is contained in:
parent
31b5451b50
commit
3bb990d782
@ -19,7 +19,11 @@
|
||||
/**
|
||||
* Limit of data (system heap, engine's data except engine's own heap)
|
||||
*/
|
||||
#define CONFIG_MEM_DATA_LIMIT_MINUS_HEAP_SIZE 1024
|
||||
#ifdef LIBC_RAW
|
||||
# define CONFIG_MEM_DATA_LIMIT_MINUS_HEAP_SIZE 1024
|
||||
#else /* !LIBC_RAW */
|
||||
# define CONFIG_MEM_DATA_LIMIT_MINUS_HEAP_SIZE 16384
|
||||
#endif /* !LIBC_RAW */
|
||||
|
||||
/**
|
||||
* Limit of stack size
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user