我有一个C ++程序,我使用命令g++ -g main.cpp
在运行Windows 10的x64机器上使用g ++ x86_64-win32-seh-rev2 v7.1.0进行编译。当我运行我的程序时,I get the error 0xc000007b。这是我的代码
#include <iostream>
using namespace std;
int main() {
cout << "Hello World";
return 0;
}
使用此代码编译时
#include <stdio.h>
using namespace std;
int main() {
printf("Hello World");
return 0;
}
工作正常。当我在gdb中运行它时,运行正常。
我见过其他帖子,其中有使用不支持该架构的dll,但我不认为我在这个应用程序中使用任何dll,除非它们是由g ++添加的