From 7a26e4f4843cfab3af1ab090f8c12aa7518e0bf6 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 2 Aug 2015 20:54:58 +0100 Subject: [PATCH] minimal: Use 1 byte for qstr hash, to make port more minimal. --- minimal/mpconfigport.h | 1 + 1 file changed, 1 insertion(+) diff --git a/minimal/mpconfigport.h b/minimal/mpconfigport.h index 49f380ea0..f2c616732 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)