altos/scheme: Make constant built pool as large as possible
authorKeith Packard <keithp@keithp.com>
Thu, 4 Jan 2018 10:22:02 +0000 (02:22 -0800)
committerKeith Packard <keithp@keithp.com>
Thu, 4 Jan 2018 10:22:02 +0000 (02:22 -0800)
This allows building with as much constant data as will fit.

Signed-off-by: Keith Packard <keithp@keithp.com>
src/scheme/ao_scheme.h

index 428533b00222db2914952d6dab1a8ea791e689a5..34fb2e885b1b4b806a91b471c5e01cef568e1e3f 100644 (file)
@@ -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