Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚使用我在他们的网站上找到的自动安装程序 MinGW-get-inst 安装了 MinGW。我正在使用 eclipse 来编写我的 C++ 程序。我的代码编译得很好,我得到了一个 .exe 文件。但是,当我尝试打开这个可执行文件时,我得到了我的计算机中缺少libgcc_s_dw2-1.dll的错误。我在 MinGW\bin 下找到了这个文件,所以我知道它存在。
这适用于所有 C/C++ 程序,我正在使用一个简单的 hello-world 程序进行测试。有什么修复吗?
谢谢
您需要确保 MinGW\bin 目录位于您运行应用程序的路径上。
如果您正在运行生成的可执行文件,a.exe例如,从 CMD 窗口执行以下操作以检查 MinGW\bin 是否在路径上。
a.exe
set PATH
此时您将看到命令路径的当前值。确保 MinGW\bin 目录在其中某处。