gpt4 book ai didi

c++ - mingw 生成损坏的 .exe

转载 作者:行者123 更新时间:2023-11-28 08:18:22 24 4
gpt4 key购买 nike

我已经安装了最新的 MinGW 套件。我的项目仍然编译没有任何错误,但生成的可执行文件不工作。启动它会导致众所周知的 windows xp 错误消息。自相矛盾的源代码,如

#include <stdio.h> 
int main()
{
printf("test\n");
return 0;
}

生成可运行的可执行文件,同时

#include <iostream>
int main()
{
std::cout << "test\n" << std::endl;
return 0;
}

编译正常,但可执行文件已损坏,如上所述。

在我进行更新之前,一切正常。那么这里出了什么问题?

最佳答案

路径中是否有 libstdc++-*.dll?它可能在较新的 MinGW 版本中共享,std::cout 使用它。

关于c++ - mingw 生成损坏的 .exe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6880220/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com