Discussion:
Issues with qmake specs
Ismael Luceno
2011-12-15 19:56:12 UTC
Permalink
I'm getting issues using a custom mkspec for cross-compiling to MIPS
(I've based it on linux-arm-gnueabi-g++, but I guess it's not
important given this looks generic).

QtBase build correctly, but other modules give errors like the following:

make[1]: Entering directory `/home/ismael/ext/qt5/qtxmlpatterns'
cd src/ && make -f Makefile
make[2]: Entering directory `/home/ismael/ext/qt5/qtxmlpatterns/src'
cd xmlpatterns/ && /home/ismael/ext/qt5/qtbase/bin/qmake
/home/ismael/ext/qt5/qtxmlpatterns/src/xmlpatterns/xmlpatterns.pro
QMAKE_ABSOLUTE_SOURCE_PATH=/home/ismael/ext/qt5/qtbase -o Makefile
QMAKESPEC has not been set, so configuration cannot be deduced.
Error processing project file:
/home/ismael/ext/qt5/qtxmlpatterns/src/xmlpatterns/xmlpatterns.pro
make[2]: *** [xmlpatterns/Makefile] Error 3
make[2]: Leaving directory `/home/ismael/ext/qt5/qtxmlpatterns/src'
make[1]: *** [module-qtxmlpatterns-src-make_default] Error 2
make[1]: Leaving directory `/home/ismael/ext/qt5/qtxmlpatterns'
make: *** [module-qtxmlpatterns-make_default] Error 2

I tried overriding QMAKESPEC, which doesn't seems like a real
solution, but well...

Then it doesn't find the qmodule.pri file (which of course is at
qtbase/mkspecs):

make[1]: Entering directory `/home/ismael/ext/qt5/qtxmlpatterns'
cd src/ && make -f Makefile
make[2]: Entering directory `/home/ismael/ext/qt5/qtxmlpatterns/src'
cd xmlpatterns/ && /home/ismael/ext/qt5/qtbase/bin/qmake
/home/ismael/ext/qt5/qtxmlpatterns/src/xmlpatterns/xmlpatterns.pro
QMAKE_ABSOLUTE_SOURCE_PATH=/home/ismael/ext/qt5/qtbase -o Makefile
Project ERROR: Cannot load qmodule.pri!
make[2]: *** [xmlpatterns/Makefile] Error 2
make[2]: Leaving directory `/home/ismael/ext/qt5/qtxmlpatterns/src'
make[1]: *** [module-qtxmlpatterns-src-make_default] Error 2
make[1]: Leaving directory `/home/ismael/ext/qt5/qtxmlpatterns'
make: *** [module-qtxmlpatterns-make_default] Error 2

Looking at the documentation, I can't find a way to add directories to
qmake's search path.
Also, looking at the prf files, there's the full path, so I have no
idea what's really going on and why it can't find the file.

So I was wondering, what would be the right solution to those problems?
Rohan McGovern
2011-12-15 22:50:10 UTC
Permalink
Post by Ismael Luceno
I'm getting issues using a custom mkspec for cross-compiling to MIPS
(I've based it on linux-arm-gnueabi-g++, but I guess it's not
important given this looks generic).
make[1]: Entering directory `/home/ismael/ext/qt5/qtxmlpatterns'
cd src/ && make -f Makefile
make[2]: Entering directory `/home/ismael/ext/qt5/qtxmlpatterns/src'
cd xmlpatterns/ && /home/ismael/ext/qt5/qtbase/bin/qmake
/home/ismael/ext/qt5/qtxmlpatterns/src/xmlpatterns/xmlpatterns.pro
QMAKE_ABSOLUTE_SOURCE_PATH=/home/ismael/ext/qt5/qtbase -o Makefile
QMAKESPEC has not been set, so configuration cannot be deduced.
/home/ismael/ext/qt5/qtxmlpatterns/src/xmlpatterns/xmlpatterns.pro
make[2]: *** [xmlpatterns/Makefile] Error 3
make[2]: Leaving directory `/home/ismael/ext/qt5/qtxmlpatterns/src'
make[1]: *** [module-qtxmlpatterns-src-make_default] Error 2
make[1]: Leaving directory `/home/ismael/ext/qt5/qtxmlpatterns'
make: *** [module-qtxmlpatterns-make_default] Error 2
I tried overriding QMAKESPEC, which doesn't seems like a real
solution, but well...
Then it doesn't find the qmodule.pri file (which of course is at
make[1]: Entering directory `/home/ismael/ext/qt5/qtxmlpatterns'
cd src/ && make -f Makefile
make[2]: Entering directory `/home/ismael/ext/qt5/qtxmlpatterns/src'
cd xmlpatterns/ && /home/ismael/ext/qt5/qtbase/bin/qmake
/home/ismael/ext/qt5/qtxmlpatterns/src/xmlpatterns/xmlpatterns.pro
QMAKE_ABSOLUTE_SOURCE_PATH=/home/ismael/ext/qt5/qtbase -o Makefile
Project ERROR: Cannot load qmodule.pri!
make[2]: *** [xmlpatterns/Makefile] Error 2
make[2]: Leaving directory `/home/ismael/ext/qt5/qtxmlpatterns/src'
make[1]: *** [module-qtxmlpatterns-src-make_default] Error 2
make[1]: Leaving directory `/home/ismael/ext/qt5/qtxmlpatterns'
make: *** [module-qtxmlpatterns-make_default] Error 2
Looking at the documentation, I can't find a way to add directories to
qmake's search path.
Also, looking at the prf files, there's the full path, so I have no
idea what's really going on and why it can't find the file.
So I was wondering, what would be the right solution to those problems?
Did you do one of the following?

- configure Qt with -prefix option pointing to qtbase's source tree
(as mentioned in README in qt5.git)

- do a `make install' of qtbase after building it

If not, try it :) If Qt is configured such that a `make install' is not
a no-op, then you must `make install' qtbase before moving on to compile
any of the other modules.

Loading...