summaryrefslogtreecommitdiff
path: root/py/compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/compile.c')
-rw-r--r--py/compile.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/py/compile.c b/py/compile.c
index 8ed7cad5f..4919a1659 100644
--- a/py/compile.c
+++ b/py/compile.c
@@ -852,6 +852,18 @@ STATIC bool compile_built_in_decorator(compiler_t *comp, int name_len, mp_parse_
compile_syntax_error(comp, name_nodes[1], "invalid micropython decorator");
}
+ #if MICROPY_DYNAMIC_COMPILER
+ if (*emit_options == MP_EMIT_OPT_NATIVE_PYTHON || *emit_options == MP_EMIT_OPT_VIPER) {
+ if (emit_native_table[mp_dynamic_compiler.native_arch] == NULL) {
+ compile_syntax_error(comp, name_nodes[1], "invalid arch");
+ }
+ } else if (*emit_options == MP_EMIT_OPT_ASM) {
+ if (emit_asm_table[mp_dynamic_compiler.native_arch] == NULL) {
+ compile_syntax_error(comp, name_nodes[1], "invalid arch");
+ }
+ }
+ #endif
+
return true;
}