diff options
author | Damien George <damien.p.george@gmail.com> | 2019-03-01 15:21:06 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-03-01 15:24:29 +1100 |
commit | 47e551ba59b1bb8393b649b4a5f51f1c83d889b6 (patch) | |
tree | 8735b9e1df59e9fbe50e8819bbea67cfb9b25941 | |
parent | 0779693c23fcc55993a06e4e0adf30a3d41f90f5 (diff) |
cc3200/mpconfigport.h: Disable compiler optimisation of OrderedDict.
This port would rather keep the code size as RAM.
-rw-r--r-- | ports/cc3200/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/cc3200/mpconfigport.h b/ports/cc3200/mpconfigport.h index b1c68a2dc..17de4a2f6 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) |