uic can't find library with msys2
Solved
General and Desktop
-
I am using msys2 on Windows, and recently upgraded to QT 5.12. I installed
mingw-w64-x86_64-qt5-5.12.4-2
. I get the following error when I runuic
Qt5Core.dll: cannot open shared object file: No such file or directory
Qt5Core.dll is in
/mingw64/bin
, which is in my path. If I runldd /mingw64/uic
, it finds Qt5Core.dll successfully.Any ideas for what else might be wrong? I've tried reinstalling a few times, but always get the same error.
Thanks.
-
It looks like I was able to resolve this.
ntldd /mingw64/bin/Qt5Core.dll
showed thatlibicuin64.dll
andlibicuuc64.dll
were missing. Installingmingw-w64-x86_64-icu-64.2-1
solved the issue.