zoukankan      html  css  js  c++  java
  • Qt configure脚本说明

    configure脚本功能非常强大,可以通过它对qt进行配置裁剪,

    为了编译更快一点可以使用下面参数:

    -fast 快速配置

    -nomake 可以不编译不需要的文件夹,根目录下面的目录都可以过滤

    比如 -nomake examples -nomake demos  -nomake tools 等等

    另外就是一些不需要的模块也可以通过配置脚本来启用或者禁用,除了一些必须的模块像gui,corelib等,都是根据配置环境监测的,如果检测到不能编译,那么就自动禁用,否则就启用。

    比如要使用webkit模块,那么可以使用参数 -webkit,如果要禁用,那么则使用-no-webkit, 下面列出可以禁用或者使用的模块:

      -no-dsp ............ Do not generate VC++ .dsp files.

     *  -dsp ............... Generate VC++ .dsp files, only if spec "win32-msvc".

     

        -no-vcproj ......... Do not generate VC++ .vcproj files.

     *  -vcproj ............ Generate VC++ .vcproj files, only if platform

                             "win32-msvc.net".

     

        -no-incredibuild-xge Do not add IncrediBuild XGE distribution commands to

                             custom build steps.

     +  -incredibuild-xge .. Add IncrediBuild XGE distribution commands to custom

                             build steps. This will distribute MOC and UIC steps,

                             and other custom buildsteps which are added to the

                             INCREDIBUILD_XGE variable.

                             (The IncrediBuild distribution commands are only added

                             to Visual Studio projects)

     

        -no-plugin-manifests Do not embed manifests in plugins.

     *  -plugin-manifests .. Embed manifests in plugins.

     

        -no-qmake .......... Do not compile qmake.

     *  -qmake ............. Compile qmake.

     

        -dont-process ...... Do not generate Makefiles/Project files. This will

                             override -no-fast if specified.

     *  -process ........... Generate Makefiles/Project files.

     

        -no-rtti ........... Do not compile runtime type information.

     *  -rtti .............. Compile runtime type information.

     

        -no-mmx ............ Do not compile with use of MMX instructions

     +  -mmx ............... Compile with use of MMX instructions

        -no-3dnow .......... Do not compile with use of 3DNOW instructions

     +  -3dnow ............. Compile with use of 3DNOW instructions

        -no-sse ............ Do not compile with use of SSE instructions

     +  -sse ............... Compile with use of SSE instructions

        -no-sse2 ........... Do not compile with use of SSE2 instructions

     +  -sse2 .............. Compile with use of SSE2 instructions

        -no-openssl ........ Do not compile in OpenSSL support

     +  -openssl ........... Compile in run-time OpenSSL support

        -openssl-linked .... Compile in linked OpenSSL support

        -no-dbus ........... Do not compile in D-Bus support

     +  -dbus .............. Compile in D-Bus support and load libdbus-1 dynamicall

                             y

        -dbus-linked ....... Compile in D-Bus support and link to libdbus-1

        -no-phonon ......... Do not compile in the Phonon module

     +  -phonon ............ Compile the Phonon module (Phonon is built if a decent

                             C++ compiler is used.)

        -no-phonon-backend . Do not compile the platform-specific Phonon backend-pl

                             ugin

     *  -phonon-backend .... Compile in the platform-specific Phonon backend-plugin

        -no-multimedia ..... Do not compile the multimedia module

     *  -multimedia ........ Compile in multimedia module

        -no-audio-backend .. Do not compile in the platform audio backend into QtMu

                             ltimedia

     *  -audio-backend ..... Compile in the platform audio backend into QtMultimedi

                             a

        -no-webkit ......... Do not compile in the WebKit module

     +  -webkit ............ Compile in the WebKit module (WebKit is built if a

                             decent C++ compiler is used.)

        -no-script ......... Do not build the QtScript module.

     +  -script ............ Build the QtScript module.

        -no-scripttools .... Do not build the QtScriptTools module.

     +  -scripttools ....... Build the QtScriptTools module.

        -no-declarative .... Do not build the declarative module

     +  -declarative ....... Build the declarative module

        -arch <arch> ....... Specify an architecture.

                             Available values for <arch>:

     *                         windows

                               windowsce

                               symbian

                               boundschecker

                               generic

     

        -no-style-<style> .. Disable <style> entirely.

        -qt-style-<style> .. Enable <style> in the Qt Library.

                             Available styles:

     *                         windows

     +                         windowsxp

     +                         windowsvista

     *                         plastique

     *                         cleanlooks

     *                         motif

     *                         cde

                               windowsce

                               windowsmobile

                               s60

     

        -no-native-gestures Do not use native gestures on Windows 7.

     *  -native-gestures ... Use native gestures on Windows 7.

        -loadconfig <config> Run configure with the parameters from file configure_

                             <config>.cache.

        -saveconfig <config> Run configure and save the parameters in file

                             configure_<config>.cache.

        -redo .............. Run configure with the same parameters as last time.

     

    Qt for Windows CE only:

     

        -no-iwmmxt ......... Do not compile with use of IWMMXT instructions

     +  -iwmmxt ............ Do compile with use of IWMMXT instructions (Qt for

                             Windows CE on Arm only)

     *  -no-crt ............ Do not add the C runtime to default deployment rules

        -qt-crt ............ Qt identifies C runtime during project generation

        -crt <path> ........ Specify path to C runtime used for project generation.

        -no-cetest ......... Do not compile Windows CE remote test application

     +  -cetest ............ Compile Windows CE remote test application

        -signature <file> .. Use file for signing the target project

        -opengl-es-cm ...... Enable support for OpenGL ES Common

        -opengl-es-cl ...... Enable support for OpenGL ES Common Lite

        -opengl-es-2 ....... Enable support for OpenGL ES 2.0

     *  -phonon-wince-ds9 .. Enable Phonon Direct Show 9 backend for Windows CE

    Qt for Symbian OS only:

     

     *  -no-freetype ....... Do not compile in Freetype2 support.

        -qt-freetype ....... Use the libfreetype bundled with Qt.

        -fpu <flags> ....... VFP type on ARM, supported options: softvfp(default) |

                             vfpv2 | softvfp+vfpv2

        -no-s60 ............ Do not compile in S60 support.

     *  -s60 ............... Compile with support for the S60 UI Framework

        -no-usedeffiles .... Disable the usage of DEF files.

     *  -usedeffiles ....... Enable the usage of DEF files.

    如果要配置为嵌入式系统,那么可以使用参数:

    -embedded arm -xplatform qws/linux-arm-g++

    还有许多其他配置参数可以参考帮助说明,另外一个重要的裁剪参数就是-qconfig,后续会深入介绍。

  • 相关阅读:
    shell 指令
    在Linux下搭建nRF51822的开发烧写环境(makefile版)
    宏定义。字符串拼接和字符串整形转字符串
    django-debug-toolbar安装过程中的error
    pipenv
    Docker 命令大全
    MySQL性能优化
    docker操作
    使用网易源解决docker下载镜像文件慢的问题
    w3school/jQuery 教程
  • 原文地址:https://www.cnblogs.com/baizx/p/1783051.html
Copyright © 2011-2022 走看看