用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里找到
ccopts=-pedantic -Os
修改为
ccopts=-Wl,--enable-auto-import -pedantic -Os
呵呵,再按F5,警告错误不见了。
>g++ -Wl,--enable-auto-import -pedantic -Os Motto.cpp -o Motto
>Exit code: 0
>./Motto
Hello World!
>Exit code: 0
注:-pedantic编译选项并不能保证被编译程序与ANSI/ISO C标准完全兼容