Skip to content
Snippets Groups Projects
Commit 49f20b84 authored by Damien George's avatar Damien George
Browse files

py: Add more #if's for configurable MOD_SYS.

parent 640e7e47
No related branches found
No related tags found
No related merge requests found
...@@ -46,7 +46,9 @@ mp_import_stat_t find_file(const char *file_str, uint file_len, vstr_t *dest) { ...@@ -46,7 +46,9 @@ mp_import_stat_t find_file(const char *file_str, uint file_len, vstr_t *dest) {
// extract the list of paths // extract the list of paths
uint path_num = 0; uint path_num = 0;
mp_obj_t *path_items; mp_obj_t *path_items;
#if MICROPY_ENABLE_MOD_SYS
mp_obj_list_get(mp_sys_path, &path_num, &path_items); mp_obj_list_get(mp_sys_path, &path_num, &path_items);
#endif
if (path_num == 0) { if (path_num == 0) {
// mp_sys_path is empty, so just use the given file name // mp_sys_path is empty, so just use the given file name
......
...@@ -134,7 +134,9 @@ STATIC const mp_map_elem_t mp_builtin_module_table[] = { ...@@ -134,7 +134,9 @@ STATIC const mp_map_elem_t mp_builtin_module_table[] = {
#if MICROPY_ENABLE_FLOAT #if MICROPY_ENABLE_FLOAT
{ MP_OBJ_NEW_QSTR(MP_QSTR_math), (mp_obj_t)&mp_module_math }, { MP_OBJ_NEW_QSTR(MP_QSTR_math), (mp_obj_t)&mp_module_math },
#endif #endif
#if MICROPY_ENABLE_MOD_SYS
{ MP_OBJ_NEW_QSTR(MP_QSTR_sys), (mp_obj_t)&mp_module_sys }, { MP_OBJ_NEW_QSTR(MP_QSTR_sys), (mp_obj_t)&mp_module_sys },
#endif
// extra builtin modules as defined by a port // extra builtin modules as defined by a port
MICROPY_EXTRA_BUILTIN_MODULES MICROPY_EXTRA_BUILTIN_MODULES
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment