我有这样的代码
#include <iostream>
#include <string>
using namespace std;
void Test(){
string line;
}
int main(){
cout << "test " << endl;
return 0;
}
该代码是可编译的,但是当我尝试运行它时,程序停止工作。然后使用 gdb 发现我的程序有什么问题
(gdb) run
Starting program: E:\CPP\Program dinamis\a.exe
[New Thread 4892.0x1d4c]
test
Program received signal SIGILL, Illegal instruction.
0x6fcc43c3 in libstdc++-6!_ZSt4cout () from C:\MinGw\bin\libstdc++-6.dll
我不明白它有什么问题。我通过键入以下内容使用 MinGW (G++) 作为我的编译器g++ -v
:
E:\CPP\Program dinamis>g++ -v
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=c:/mingw/bin/../libexec/gcc/mingw32/4.6.2/lto-wrapper.exe
Target: mingw32
Configured with: ../gcc-4.6.2/configure --enable-
languages=c,c++,ada,fortran,objc,obj-c++ --disable-sjlj-exceptions --with-dwarf2
--enable-shared --enable-libgo
mp --disable-win32-registry --enable-libstdcxx-debug --enable-version-specific-
runtime-libs --build=mingw32 --prefix=/mingw
Thread model: win32
gcc version 4.6.2 (GCC)
但如果我在我的 Visual Studio 上编写相同的代码,程序运行良好且不会出错。我应该如何处理我的 G++