From 47e551ba59b1bb8393b649b4a5f51f1c83d889b6 Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 1 Mar 2019 15:21:06 +1100 Subject: [PATCH] cc3200/mpconfigport.h: Disable compiler optimisation of OrderedDict. This port would rather keep the code size as RAM. --- ports/cc3200/mpconfigport.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ports/cc3200/mpconfigport.h b/ports/cc3200/mpconfigport.h index b1c68a2dc3..17de4a2f65 100644 --- a/ports/cc3200/mpconfigport.h +++ b/ports/cc3200/mpconfigport.h @@ -39,6 +39,7 @@ #define MICROPY_PERSISTENT_CODE_LOAD (1) #define MICROPY_EMIT_THUMB (0) #define MICROPY_EMIT_INLINE_THUMB (0) +#define MICROPY_COMP_CONST_LITERAL (0) #define MICROPY_COMP_MODULE_CONST (1) #define MICROPY_ENABLE_GC (1) #define MICROPY_ENABLE_FINALISER (1)