I'm upgrading a project from Gui-Guider v1.5.0 to Gui-Guider v1.9.1, and it won't compile. It gives me no information as to why. I'm trying to find out how I can get actual, unfiltered logs of the compile (or how I can execute the commands from the command line). All the log shows is:
<Everything compiles just fine>
...
Compiling /home/user/GUI-Guider-Projects/Project2/lvgl-simulator/../generated/images/_fan_inverse2_64x64_alpha_48x48.c
Compiling /home/user/GUI-Guider-Projects/Project2/lvgl-simulator/../generated/images/_nxcp_page_left_alpha_64x64.c
Compiling /home/user/GUI-Guider-Projects/Project2/lvgl-simulator/../generated/images/_stop_pressed_alpha_64x64.c
Compiling /home/user/GUI-Guider-Projects/Project2/lvgl-simulator/../generated/images/_system_alpha_135x100.c
Compiling /home/user/GUI-Guider-Projects/Project2/lvgl-simulator/../generated/images/_tools_alpha_135x100.c
Compiling /home/user/GUI-Guider-Projects/Project2/lvgl-simulator/../generated/guider_fonts/lv_font_NanumGothic_ExtraBold_24.c
make: *** [Makefile:96: build/object/main.o] Error 1
make: *** Waiting for unfinished jobs....
Compilation failed!
Something is failing in the link stage is my guess, but I can't figure out what is happening. If I go to the Project2/lvgl-simulator directory and type "make VERBOSE=1" to try and get more information/control, it just gives me the following error:
Compiling /home/user/GUI-Guider-Projects/Project2/lvgl-simulator/main.c
main.c:21:10: fatal error: widgets_init.h: No such file or directory
21 | #include "widgets_init.h"
| ^~~~~~~~~~~~~~~~
compilation terminated.
make: *** [Makefile:96: build/object/main.o] Error 1
This strange "widgets_init.h" error doesn't happen compiling from inside Gui-Guider, and an exhaustive, recursive 'find' hasn't revealed a widgets_init.h file anywhere, so I'm really struggling to figure out what's happening or how to proceed.
Can anyone tell me how I can get real debug logs from Gui-Guider v1.9.1? This project compiled just fine under v1.5, so something must be different in the new environment. If I could see the actual error from the link command it would probably be obvious.
Also, what is "widgets_init.h", where do I find it, and why doesn't this happen on the compile from inside Gui-Guider?
Thank you for any assistance.