mingw-w64 – 与MinGW-64的静态链接

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

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

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

最佳答案 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.

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

点赞