Reinstall Qt5 with QtMultimedia using Ubuntu Mate
Unsolved
General and Desktop
-
Are you calling configure from the top folder ?
If so, did you clean everything before calling configure again ?As I suggest every time: use out of source builds, that way if something goes wrong or you want to use a different set of option, you can simply nuke everything or change the folder and you know for sure you start from a clean state.
-
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
-
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
-
It will be in the future when you'll build Qt again.