QT4.8.6静态编译
Posted Qwells
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QT4.8.6静态编译相关的知识,希望对你有一定的参考价值。
- 下载源安装程序,http://download.qt.io/archive/qt/4.8/4.8.6/qt-everywhere-opensource-src-4.8.6.tar.gz
- 解压
- cd 进入解压后的目录,命令
./configure -static -release -opensource -qt-zlib -qt-libpng -qt-libmng -qt-libjpeg -nomake demos -nomake examples -qt-sql-sqlite -prefix /usr/local/Trolltech/Qt-4.8.6_static
命令参数含义如下所示(带有+号的是默认选项):
-static ............ Create and use static Qt libraries. -opensource ........ Compile and link the Open-Source Edition of Qt. -release ........... Compile and link Qt with debugging turned off. Third Party Libraries: -qt-zlib ........... Use the zlib bundled with Qt. + -system-zlib ....... Use zlib from the operating system. See http://www.gzip.org/zlib -no-gif ............ Do not compile GIF reading support. -no-libtiff ........ Do not compile TIFF support. -qt-libtiff ........ Use the libtiff bundled with Qt. + -system-libtiff .... Use libtiff from the operating system. See http://www.libtiff.org -no-libpng ......... Do not compile PNG support. -qt-libpng ......... Use the libpng bundled with Qt. + -system-libpng ..... Use libpng from the operating system. See http://www.libpng.org/pub/png -no-libmng ......... Do not compile MNG support. -qt-libmng ......... Use the libmng bundled with Qt. + -system-libmng ..... Use libmng from the operating system. See http://www.libmng.com -no-libjpeg ........ Do not compile JPEG support. -qt-libjpeg ........ Use the libjpeg bundled with Qt. + -system-libjpeg .... Use libjpeg from the operating system. See http://www.ijg.org -no-sql-<driver> ... Disable SQL <driver> entirely. -qt-sql-<driver> ... Enable a SQL <driver> in the QtSql library, by default none are turned on. -plugin-sql-<driver> Enable SQL <driver> as a plugin to be linked to at run time. Possible values for <driver>: [ db2 ibase mysql oci odbc psql sqlite sqlite2 sqlite_symbian symsql tds ] -prefix <dir> ...... This will install everything relative to <dir> (default /usr/local/Trolltech/Qt-4.8.6_static)
- make
make的时间还是那么的长。。。
在configure命令的参数里面,没有添加-qt-sql-sqlite的时候, 会出现下面错误。
只好重新configure了。
main.cpp:(.text.startup+0x1dd6): undefined reference to `qt_plugin_instance_qsqlite()‘ collect2: ld 返回 1 make[4]: *** [../../../../bin/assistant] 错误 1 make[4]:正在离开目录 `/media/software/qtRes/qt-everywhere-opensource-src-4.8.6/tools/assistant/tools/assistant‘ make[3]: *** [sub-assistant-make_default-ordered] 错误 2 make[3]:正在离开目录 `/media/software/qtRes/qt-everywhere-opensource-src-4.8.6/tools/assistant/tools‘ make[2]: *** [sub-tools-make_default-ordered] 错误 2 make[2]:正在离开目录 `/media/software/qtRes/qt-everywhere-opensource-src-4.8.6/tools/assistant‘ make[1]: *** [sub-assistant-make_default-ordered] 错误 2 make[1]:正在离开目录 `/media/software/qtRes/qt-everywhere-opensource-src-4.8.6/tools‘ make: *** [sub-tools-make_default-ordered] 错误 2
如果我想添加-qt-sql-mysql,显示不成功?
- sudo make install
- 测试:
- 建立文件夹,然后写程序文件main.cpp
- qmake -project
- 生成pro文件后在里面加入CONFIG += static
- qmake
- 生成Makefile后在cxxflags的=后插入-static
- make
以上是关于QT4.8.6静态编译的主要内容,如果未能解决你的问题,请参考以下文章
求解win7 64位上安装Qt4.8.6 + Qt Creator3.1.0 + mingw ??