diff options
author | Damien George <damien.p.george@gmail.com> | 2019-08-23 11:20:50 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-08-28 12:47:58 +1000 |
commit | af20c2ead3e9bb397fdf89e316aa78b56f165013 (patch) | |
tree | 99cc8c752d6347dc9f0d6dccb6e11384626bd278 /examples | |
parent | 8e3e05761e1143a2502c7eca07c1b22bac192c84 (diff) | |
download | micropython-af20c2ead3e9bb397fdf89e316aa78b56f165013.tar.gz micropython-af20c2ead3e9bb397fdf89e316aa78b56f165013.zip |
py: Add global default_emit_opt variable to make emit kind persistent.
mp_compile no longer takes an emit_opt argument, rather this setting is now
provided by the global default_emit_opt variable.
Now, when -X emit=native is passed as a command-line option, the emitter
will be set for all compiled modules (included imports), not just the
top-level script.
In the future there could be a way to also set this variable from a script.
Fixes issue #4267.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/embedding/hello-embed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/embedding/hello-embed.c b/examples/embedding/hello-embed.c index 9659630966..2000b703c1 100644 --- a/examples/embedding/hello-embed.c +++ b/examples/embedding/hello-embed.c @@ -41,7 +41,7 @@ mp_obj_t execute_from_str(const char *str) { qstr src_name = 1/*MP_QSTR_*/; mp_lexer_t *lex = mp_lexer_new_from_str_len(src_name, str, strlen(str), false); mp_parse_tree_t pt = mp_parse(lex, MP_PARSE_FILE_INPUT); - mp_obj_t module_fun = mp_compile(&pt, src_name, MP_EMIT_OPT_NONE, false); + mp_obj_t module_fun = mp_compile(&pt, src_name, false); mp_call_function_0(module_fun); nlr_pop(); return 0; |