如何将 Qt 编译为静态

编程入门 行业动态 更新时间:2024-10-26 15:14:05
本文介绍了如何将 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) Visual 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:

  • 禁用调试:-release
  • 禁用不需要的模块,尤其是 QtWebKit:-no-webkit -no-script -no-scripttools -no-qt3support -nomake demos -nomake tools -nomake examples
  • 禁用 LTCG 支持,这会产生巨大的静态库的副作用:no-ltcg
  • 这些应该有助于将构建大小保持在最低限度.

    These should help keep the build size to a minimum.

    更多推荐

    如何将 Qt 编译为静态

    本文发布于:2023-10-19 19:15:08,感谢您对本站的认可!
    本文链接:https://www.elefans.com/category/jswz/34/1508501.html
    版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
    本文标签:如何将   静态   译为   Qt

    发布评论

    评论列表 (有 0 条评论)
    草根站长

    >www.elefans.com

    编程频道|电子爱好者 - 技术资讯及电子产品介绍!