core: Resurrect gcc support.

* src/mes.c (MES_ARENA)[POSIX]: Default to 100000000.
This commit is contained in:
Jan Nieuwenhuizen 2018-07-21 10:48:31 +02:00
parent 3429f103a4
commit 57cb608b6a
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 4 additions and 0 deletions

View File

@ -25,7 +25,11 @@
#include <libmes.h>
//#define MES_MINI 1
#if POSIX
int ARENA_SIZE = 100000000; // 64b: 4GiB
#else
int ARENA_SIZE = 200000; // 32b: 2MiB, 64b: 4 MiB
#endif
int MAX_ARENA_SIZE = 100000000;
int JAM_SIZE = 20000;