Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
Reinstall Qt5 with QtMultimedia using Ubuntu Mate
-
@SGaist i called configure from the top folder i got from the .tar.gz file. I just deleted config.cache before calling configure again. How would i go about cleaning everything before calling configure again? What are out of source builds?
-
make distclean
ormake confclean
As the name suggests: builds that happens out of the source tree.
Basically:
mkdir /home/your_user/build_qt5 pushd /home/your_user/build_qt5 /path/to/Qt_sources/configure -nomake tests -nomake examples make -j (number_of_cores * 2 + 1) make install popd
-
@SGaist Ok, is this even useful now? I mean i already installed Qt5 so isnt it a little bit too late?
Btw in my other post about my code are some new outputs since i installed Qt5.
-
It will be in the future when you'll build Qt again.