摘要:
用SciTE写了一个简单的C++程序,也安装了MinGW。#include <iostream>int main(){ std::cout << "Hello World!\n"; return 0;}按F5调试却出现错误:Info: resolving std::cout by linking to __imp___ZSt4cout后来从网上找了一下原因,原来用参数可以解决,g++ -Wl,--enable-auto-import helloworld.cc -o helloword打开SciTE->选项->cpp.properties 阅读全文