Could not find qmake configuration file linux-g++.

如下图,刚刚接触Qt,在Ubuntu 14.04下运行

./configure -prefix  -release -nomake tests -nomake examples -opensource  -qt-xcb

编译Qt5.6.0源码时,

报错:Could not find qmake configuration file linux-g++。

find $PWD -name linux-g++.

可以发现文件在 $PWD/qtbase下面

所以上文命令改为

./configure -prefix $PWD/qtbase -release -nomake tests -nomake examples -opensource  -qt-xcb

其实大家阅读README文件就知道了,里面有例子,白忙活一场


你可能感兴趣的:(os)