Jump to content

Special:Badtitle/NS90:Talk:Frameworks/Building/unable to finish Qt 5.2 compilation unless it is done in a different directory

From KDE Community Wiki
Revision as of 12:31, 15 December 2013 by Jtamate (talk | contribs) (New thread: unable to finish Qt 5.2 compilation unless it is done in a different directory)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

I've been unable to compile Qt5 for a long time, until today that I've tried to build it from another directory, not from the git clone directory.

Instead of

$ git clone git://anongit.kde.org/qt/qt5.git --branch stable
$ cd qt5
$ ./init-repository
$ ./configure -prefix $PWD/qtbase -opensource -confirm-license -developer-build -nomake tests -nomake examples -dbus -no-separate-debug-info -xcb -qpa xcb -no-gtkstyle
$ make

I had to use:

$ git clone git://anongit.kde.org/qt/qt5.git --branch stable
$ cd qt5
$ ./init-repository
$ mkdir build
$ ../configure -prefix $PWD/qtbase -opensource -confirm-license -developer-build -nomake tests -nomake examples -dbus -no-separate-debug-info -xcb -qpa xcb -no-gtkstyle -no-warnings-are-errors
$ make