在Stackoverflow上搜索了很多并搜索出我的问题之后,我仍然无法使用clang ++ 3.2运行.EXE文件构建。
将.BC文件编译为.EXE时,“clang ++”没有出错。当我尝试运行.EXE文件时,它突然终止程序。
任何人都可以帮我吗?
我已经尝试过使用-static-libstdc ++ - 6 / libstdc ++,但问题仍然存在。
旁注:使用g ++编译的可执行文件没有任何问题,运行正常。
EDITED :
我的代码:
#include <iostream>
using namespace std;
int main(){
int a=0;
cin>>a;
cout<<a<<endl;
return 0;
}