• qt静态编译


    下载http://download.qt-project.org/official_releases/qt/5.1/5.1.1/qt-windows-opensource-5.1.1-mingw48_opengl-x86-offline.exe

    执行configure.exe -static -release

    提示WARNING: Using OpenGL ES 2.0 without ANGLE.

    Specify -opengl desktop to use Open GL.
    The build will most likely fail.
    (Press any key to continue...)

    执行configure.exe -static -release -opengl desktop

    通过了。

    再执行mingw32-make

    等了2个小时。。

    QMAKE_LFLAGS=-static -static-libgcc -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc

    configure -confirm-license -opensource -prefix "E:Qtqt5.3.1_static_build" -debug-and-release -static -platform win32-g++ -opengl desktop -no-angle -nomake examples -nomake tests -skip qtwebkit -no-qml-debug

    解释一下上面的命令:

    -opensource 编译和链接开源版的Qt.

    -prefix "G:QtQt5.3.1"  最后装到目录G:QtQt5.3.1

    -debug-and-release 编译debug版本和release版本

    -static  静态编译

    -platform win32-g++ 目标平台,win32

    -opengl desktop  选择desktop的opengl

    -no-angle 

    -nomake examples   不编译examples

    -nomake tests     不编译tests

    -skip qtwebkit     不编译qtwebkit

    飞儿传媒www.firadio.com
  • 相关阅读:
    时间格式
    分页1
    vs2010 VS2008 VS2005 快捷键大全
    css 常用标签
    JS Array数组操作
    CSS属性
    jquery 选择器大全
    @fontface
    以前写过的ajax基础案例(王欢huanhuan)
    Jquery操作下拉框(DropDownList)的取值赋值实现代码(王欢)
  • 原文地址:https://www.cnblogs.com/firadio/p/3331256.html
Copyright © 2020-2023  润新知