We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1c5e09 commit 03e6e8dCopy full SHA for 03e6e8d
scripts/build_lvgl_micropython.sh
@@ -40,7 +40,10 @@ elif [ "$target" == "unix" -o "$target" == "macos" ]; then
40
manifest="FROZEN_MANIFEST=/home/user/sources/MicroPythonOS/manifest_unix.py"
41
fi
42
# build for desktop
43
- python3 make.py "$target" DISPLAY=sdl_display INDEV=sdl_pointer INDEV=sdl_keyboard "$manifest"
+ #python3 make.py "$target" DISPLAY=sdl_display INDEV=sdl_pointer INDEV=sdl_keyboard "$manifest"
44
+ # LV_CFLAGS are passed to USER_C_MODULES
45
+ # STRIP= makes it so that debug symbols are kept
46
+ python3 make.py "$target" LV_CFLAGS="-g -O0 -ggdb" STRIP= DISPLAY=sdl_display INDEV=sdl_pointer INDEV=sdl_keyboard "$manifest"
47
else
48
echo "invalid target $target"
49
0 commit comments