diff options
author | Damien George <damien.p.george@gmail.com> | 2015-08-02 20:54:58 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-08-02 20:54:58 +0100 |
commit | 7a26e4f4843cfab3af1ab090f8c12aa7518e0bf6 (patch) | |
tree | c02c4737342360e128dbee169314bc4ba3bd0a80 /minimal | |
parent | 9a2913ed1c57e6d167cad70d87ad32d504cb6f43 (diff) | |
download | micropython-7a26e4f4843cfab3af1ab090f8c12aa7518e0bf6.tar.gz micropython-7a26e4f4843cfab3af1ab090f8c12aa7518e0bf6.zip |
minimal: Use 1 byte for qstr hash, to make port more minimal.
Diffstat (limited to 'minimal')
-rw-r--r-- | minimal/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/minimal/mpconfigport.h b/minimal/mpconfigport.h index 49f380ea09..f2c616732a 100644 --- a/minimal/mpconfigport.h +++ b/minimal/mpconfigport.h @@ -2,6 +2,7 @@ // options to control how Micro Python is built +#define MICROPY_QSTR_BYTES_IN_HASH (1) #define MICROPY_ALLOC_PATH_MAX (256) #define MICROPY_EMIT_X64 (0) #define MICROPY_EMIT_THUMB (0) |