zoukankan      html  css  js  c++  java
  • 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
    • 测试:
    1. 建立文件夹,然后写程序文件main.cpp
    2. qmake -project
    3. 生成pro文件后在里面加入CONFIG += static
    4. qmake
    5. 生成Makefile后在cxxflags的=后插入-static
    6. make
    该博客停止更新,继续关注请移步: www.foolweel.com
  • 相关阅读:
    mybaits错误解决:There is no getter for property named 'id' in class 'java.lang.String'(转)
    Tomcat配置虚拟路径
    FireFox背景亮度修改
    简单的百度贴吧爬虫实现(urllib)
    python知识总结
    QT-- MainWindow外的cpp文件调用ui
    数据结构--栈的实现
    数据结构-- 队列的实现
    经典排序算法---归并排序
    经典排序算法---希尔排序
  • 原文地址:https://www.cnblogs.com/Qwells/p/5124601.html
Copyright © 2011-2022 走看看