1
0
Fork 0

reduce heap usage on 32 bit systems

This commit is contained in:
jsteemann 2017-01-05 10:40:01 +01:00
parent 431a74a962
commit b65ba4ef15
1 changed files with 2 additions and 0 deletions

View File

@ -53,6 +53,8 @@
#if defined(__arm__) || defined(__aarch64__)
#define TRI_V8_MAXHEAP 1 * 1024
#elif TRI_PADDING_32
#define TRI_V8_MAXHEAP 1 * 1024
#else
#define TRI_V8_MAXHEAP 3 * 1024
#endif