1
0
Fork 0

Merge pull request #1983 from servusoft/patch-7

Global definition heap memory (TRI_V8_MAXHEAP) and adoptation for ARM
This commit is contained in:
Wilfried Goesgens 2016-08-08 10:15:15 +02:00 committed by GitHub
commit 92cbb12092
1 changed files with 11 additions and 0 deletions

View File

@ -46,6 +46,17 @@
#define TRI_PADDING_32 1
#endif
// -----------------------------------------------------------------------------
// --Section-- v8 features
// -----------------------------------------------------------------------------
#define TRI_V8_MAXHEAP 3 * 1024
#if defined(__arm__) || defined(__aarch64__)
#undef TRI_V8_MAXHEAP
#define TRI_V8_MAXHEAP 1 * 1024
#endif
// -----------------------------------------------------------------------------
// --Section-- solaris
// -----------------------------------------------------------------------------