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

qemu-arm: Set stack limit in main.

parent 7a53ac8e
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@
#include "py/compile.h"
#include "py/runtime0.h"
#include "py/runtime.h"
#include "py/stackctrl.h"
#include "py/repl.h"
#include "py/pfenv.h"
......@@ -49,6 +50,7 @@ void do_str(const char *src) {
}
int main(int argc, char **argv) {
mp_stack_set_limit(10240);
mp_init();
do_str("print('hello world!')");
mp_deinit();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment