diff options
Diffstat (limited to 'py')
| -rw-r--r-- | py/mpconfig.h | 2 | ||||
| -rw-r--r-- | py/mpstate.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index f0d11961d..d93100bb8 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -1308,7 +1308,7 @@ typedef double mp_float_t; // Whether to initialise "sys.path" and "sys.argv" to their defaults in mp_init() #ifndef MICROPY_PY_SYS_PATH_ARGV_DEFAULTS -#define MICROPY_PY_SYS_PATH_ARGV_DEFAULTS (1) +#define MICROPY_PY_SYS_PATH_ARGV_DEFAULTS (MICROPY_PY_SYS) #endif // Whether to provide "sys.maxsize" constant diff --git a/py/mpstate.h b/py/mpstate.h index 69fee0654..8ece15166 100644 --- a/py/mpstate.h +++ b/py/mpstate.h @@ -153,10 +153,12 @@ typedef struct _mp_state_vm_t { // dictionary for the __main__ module mp_obj_dict_t dict_main; + #if MICROPY_PY_SYS // If MICROPY_PY_SYS_PATH_ARGV_DEFAULTS is not enabled then these two lists // must be initialised after the call to mp_init. mp_obj_list_t mp_sys_path_obj; mp_obj_list_t mp_sys_argv_obj; + #endif // dictionary for overridden builtins #if MICROPY_CAN_OVERRIDE_BUILTINS |
