Merge pull request #8687 from bill88t/espcompile

Enable built-ins compile for all boards
This commit is contained in:
Scott Shawcroft 2023-12-05 10:26:05 -08:00 committed by GitHub
commit 156f417f70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -47,7 +47,6 @@
#define MICROPY_COMP_CONST_LITERAL (1)
#define MICROPY_COMP_CONST_TUPLE (1)
#define MICROPY_COMP_DOUBLE_TUPLE_ASSIGN (1)
#define MICROPY_ENABLE_COMPILER (1)
#define MICROPY_ENABLE_EXTERNAL_IMPORT (1)
#define MICROPY_FULL_CHECKS (1)
#define MICROPY_HELPER_REPL (1)

View file

@ -603,4 +603,8 @@ void background_callback_run_all(void);
#define MICROPY_PY_OPTIMIZE_PROPERTY_FLASH_SIZE (CIRCUITPY_OPTIMIZE_PROPERTY_FLASH_SIZE)
// Enable compiler functionality.
#define MICROPY_ENABLE_COMPILER (1)
#define MICROPY_PY_BUILTINS_COMPILE (1)
#endif // __INCLUDED_MPCONFIG_CIRCUITPY_H