Error building static library for 5.15.8
-
We have been using Qt 5.12.2. so I tried to upgrade to 5.15.8 but ran into some problems.
I downloaded the 5.15..8 sources and configured Qt :
E:\Qt\5.15.8\Src\configure -platform win32-g++ -static -qt-zlib -qt-pcre -qt-libpng -qt-libjpeg -qt-freetype -opengl desktop -no-openssl -make libs -nomake tools -nomake examples -nomake tests -prefix "E:\Qt\Static\5.15.8" -commercial
The configuration succeeded and I tried to build the static library with mingw32-make
This failed with the following error:
cd tools\moc\ && ( if not exist Makefile E:\Qt\Static\5.15.8\qtbase\bin\qmake.exe -o Makefile E:\Qt\5.15.8\Src\qtbase\src\tools\moc\moc.pro ) && mingw32-make -f Makefile
Project ERROR: Unknown module(s) in QT: bootstrap-private
mingw32-make[2]: *** [Makefile:130: sub-moc-make_first] Error 3
mingw32-make[2]: Leaving directory 'E:/Qt/Static/5.15.8/qtbase/src'
mingw32-make[1]: *** [Makefile:54: sub-src-make_first] Error 2
mingw32-make[1]: Leaving directory 'E:/Qt/Static/5.15.8/qtbase'
mingw32-make: *** [Makefile:91: module-qtbase-make_first] Error 2I presume I have failed to install some pre-requisite, but I don't know what is missing.
How do I get this to build so that I can try to build the project file?
Thanks.
-
Since 5.15.8 is commercial only I would suggest asking the Qt support for help.
-
Since 5.15.8 is commercial only I would suggest asking the Qt support for help.
@Christian-Ehrlicher
Do not use a "-" in prefix...WRONG:
./configure -release -prefix /usr/local/Qt-5.15.8OK:
./configure -release -prefix /usr/local/Qt5.15.8