summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-07-21 00:37:53 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-07-21 00:37:53 +0300
commit68815901d43bd02c63dc9eaf3e4c3026bd949c91 (patch)
tree9e4f22cf4d055068212a57648ceced4a46355e20
parent93e353e3844f7116088a1a105ba588cade0e6783 (diff)
downloadmicropython-68815901d43bd02c63dc9eaf3e4c3026bd949c91.tar.gz
micropython-68815901d43bd02c63dc9eaf3e4c3026bd949c91.zip
unix: Disable MICROPY_GC_ALLOC_THRESHOLD for minimal build.
-rw-r--r--unix/mpconfigport_minimal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/unix/mpconfigport_minimal.h b/unix/mpconfigport_minimal.h
index 2ab95c67af..054e82c243 100644
--- a/unix/mpconfigport_minimal.h
+++ b/unix/mpconfigport_minimal.h
@@ -34,6 +34,7 @@
#define MICROPY_ALLOC_PARSE_CHUNK_INIT (64)
#define MICROPY_ALLOC_PATH_MAX (PATH_MAX)
#define MICROPY_ENABLE_GC (1)
+#define MICROPY_GC_ALLOC_THRESHOLD (0)
#define MICROPY_ENABLE_FINALISER (0)
#define MICROPY_STACK_CHECK (0)
#define MICROPY_COMP_CONST (0)