使用MinGW在win 10下编译Sublime Text 3中的c ++

时间:2016-11-08 13:44:17

标签: c++ mingw sublimetext3

我安装了其他人提到的所有必要插件。当我使用MinGW编译cpp文件时(使用ctrl-shift-b并选择MinGWRun::MinGW

    #include <iostream>
    using namespace std;

    int main()
    {
       cout<<"Hello world !"<<endl;
       return 0;
    }

语句

发生系统错误

enter image description here

MinGW的配置文件设置如下:

enter image description here

路径设置正确。那么它有什么问题呢?

1 个答案:

答案 0 :(得分:1)

您希望使用g++代替gcc,您错过了C ++标准库,从而导致未定义的引用&#34;这只意味着你没有链接你在代码中使用的东西的编译定义。