diff options
Diffstat (limited to 'py/builtintables.c')
| -rw-r--r-- | py/builtintables.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/builtintables.c b/py/builtintables.c index ca15636a5..c064bb439 100644 --- a/py/builtintables.c +++ b/py/builtintables.c @@ -174,6 +174,9 @@ STATIC const mp_map_elem_t mp_builtin_module_table[] = { #if MICROPY_ENABLE_MOD_SYS { MP_OBJ_NEW_QSTR(MP_QSTR_sys), (mp_obj_t)&mp_module_sys }, #endif +#if MICROPY_ENABLE_MOD_GC && MICROPY_ENABLE_GC + { MP_OBJ_NEW_QSTR(MP_QSTR_gc), (mp_obj_t)&mp_module_gc }, +#endif // extra builtin modules as defined by a port MICROPY_EXTRA_BUILTIN_MODULES |
