急!!
现在终端有提示说:
Qt is now configured for building. Just run 'gmake'.
Once everything is built, Qt is installed.
You should not run 'gmake install'.
但是,根据
http://doc.trolltech.com/4.2/deployment-x11.html#building-qt-statically这里的说明:
Building Qt Statically
To use this approach, you must start by installing a static version of the Qt library:
cd /path/to/Qt
./configure -static -prefix /path/to/Qt <other parameters>
make sub-src
We specify the prefix so that we do not overwrite the existing Qt installation. The example above only builds the Qt libraries, i.e. the examples and Qt Designer will not be built. When make is done, you will find the Qt libraries in the /path/to/Qt/lib directory.
When linking your application against static Qt libraries, note that you might need to add more libraries to the LIBS line in your project file. For more information, see the Application Dependencies section.
我接下来该输入什么命令啊?是gmake还是 make sub-src?