如何将Qt编译为静态 [英] How to compile Qt as static

查看:104
本文介绍了如何将Qt编译为静态的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前正在Qt中编写代码。如何静态地编译代码?

I am currently writing code in Qt. How to compile the code statically?

从Qt文档中我知道以下步骤

From Qt document I came to know the following step

1)可视化Studio 2008-> commandPrompt-> QtDir-> configure -static-> nmake

1) Visual Studio 2008 -> commandPrompt -> QtDir -> configure -static -> nmake

但是,它占用了17 GB,最后在完成之前退出,并指出空间不够。

But, it took 17 GB and at the end it exited before the completion stating that "the space is not enough".

有没有简单的方法可以将Qt应用程序编译为独立程序?

Is there any simple way to compile the Qt application as a stand alone program?

推荐答案

您已经使用了唯一可行的方法:将源代码编译为静态。

You have already used the only way possible: compiling the source as static.

某些方面的影响很大磁盘大小(这里似乎是问题),并带有相应的配置参数:

Some things that have a very large impact on disk size (which seems to be the problem here), with corresponding configure arguments:


  1. 禁用调试:-发布

  2. 禁用不需要的模块,尤其是QtWebKit: -no-webkit -no-script -no-scripttools -no -qt3support -nomake演示-nomake工具-nomake示例

  3. 禁用LTCG支持,它具有令人讨厌的一面生成大型静态库的效果: no-ltcg

  1. Disable debug: -release
  2. Disable modules you don't need, especially QtWebKit: -no-webkit -no-script -no-scripttools -no-qt3support -nomake demos -nomake tools -nomake examples
  3. Disable LTCG support, which has the nasty side effect of generating huge static libraries: no-ltcg

这些应该有助于保持构建大小最小。

These should help keep the build size to a minimum.

这篇关于如何将Qt编译为静态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆