Just an FYI
Trying to set up a Windows build environment following these instructions
->
https://librepilot.atlassian.net/wiki/display/LPDOC/Windows+Building+and+Packaging <-
I get this error...
$ pacman -Sy
:: Synchronizing package databases...
mingw32 is up to date
mingw64 is up to date
msys is up to date
error: failed retrieving file 'librepilot-mingw.db' from download.librepilot.org : The requested URL returned error: 404
librepilot-mingw is up to date
and then these errors
mingw32-make[2]: Entering directory 'C:/msys64/home/bdiffendaffe/librepilot/build/librepilot-gcs_release'
mingw32-make[2]: *** No rule to make target 'C:/msys64/mingw64/bin/libicuin57.dll', needed by 'C:/msys64/home/bdiffendaffe/librepilot/build/librepilot-gcs_release/bin/libicuin57.dll'.
mingw32-make[2]: *** No rule to make target 'C:/msys64/mingw64/bin/libicudt57.dll', needed by 'C:/msys64/home/bdiffendaffe/librepilot/build/librepilot-gcs_release/bin/libicudt57.dll'.
mingw32-make[2]: *** No rule to make target 'C:/msys64/mingw64/bin/libicuuc57.dll', needed by 'C:/msys64/home/bdiffendaffe/librepilot/build/librepilot-gcs_release/bin/libicuuc57.dll'.
I replaced these lines in ~\librepilot\ground\gcs\copydata.pro
line 91 libicuin57.dll \
line 92 libicudt57.dll \
line 93 libicuuc57.dll \
with
line 91 libicuin58.dll \
line 92 libicudt58.dll \
line 93 libicuuc58.dll \
which is what is in ~\librepilot\build\librepilot-gcs_release\bin
and it seemed to build fine.
Not sure if the first error is anything important??
Lucky