From: Keith Packard Date: Thu, 4 Jan 2018 10:22:02 +0000 (-0800) Subject: altos/scheme: Make constant built pool as large as possible X-Git-Tag: 1.8.5~1^2~2^2~25 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=0a0327330dcbf5531cd0f8ca8b912fa51ef44f13 altos/scheme: Make constant built pool as large as possible This allows building with as much constant data as will fit. Signed-off-by: Keith Packard --- diff --git a/src/scheme/ao_scheme.h b/src/scheme/ao_scheme.h index 428533b0..34fb2e88 100644 --- a/src/scheme/ao_scheme.h +++ b/src/scheme/ao_scheme.h @@ -71,7 +71,7 @@ ao_scheme_os_restore(void); #endif #ifdef AO_SCHEME_MAKE_CONST -#define AO_SCHEME_POOL_CONST 16384 +#define AO_SCHEME_POOL_CONST 32764 extern uint8_t ao_scheme_const[AO_SCHEME_POOL_CONST] __attribute__((aligned(4))); #define ao_scheme_pool ao_scheme_const #define AO_SCHEME_POOL AO_SCHEME_POOL_CONST