与MinGW-64静态链接

时间:2012-09-02 06:57:58

标签: mingw-w64

我正在尝试使用http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Automated%20Builds/中的64位MinGW,但是当我用它编译程序时,当DLL不可用时,生成的可执行文件会失败。

如何让这个编译器与标准库进行静态链接?

或者我应该使用另一种64位MinGW分布吗?

1 个答案:

答案 0 :(得分:2)

g ++开关应该是

    -static

请参阅 http://gcc.gnu.org/onlinedocs/gcc/Link-Options.html

    -static
        On systems that support dynamic linking, this prevents linking with
    the shared libraries. On other systems, this option has no effect.

您应该发布用于编译/链接的命令行,以便在不适合您的情况下获得更多帮助。