我安装了Netbeans并且作为C ++编译器安装了cygwin。我做了一个简单的项目来测试我的安装,这是代码:
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char** argv) {
cout << "test";
return 0;
}
这是它提供的错误消息:http://pastebin.com/jRRh7MPi
我希望你们能帮助我。
答案 0 :(得分:2)
您需要显式链接到C ++标准库,或使用g++
而不是gcc
进行编译。