无法在gc 4.8.2上运行gcc编译的可执行文件

时间:2014-03-14 14:21:36

标签: c++ windows gcc

我在Windows 7 64位上进行了全新的minGW安装,我可以编译c ++而不会出错,但是如果我尝试运行可执行文件,我会得到

“此版本的D:\ xampp \ htdocs \ Dropbox \ Dropbox \ c \ rts \ teste \ a.exe与您正在运行的Windows版本不兼容。请检查您计算机的系统信息,看看是否需要该程序的x86(32位)或x64(64位)版本,然后与软件发行商联系。“

我的代码是

#include <iostream>
using namespace std;
int main() {
  cout << "aaaa" << endl;
  return 0;
}

我正在使用

进行编译

C:\ MinGW \ bin \ gcc -c D:\ xampp \ htdocs \ Dropbox \ Dropbox \ c \ rts \ teste \ a.cpp -o D:\ xampp \ htdocs \ Dropbox \ Dropbox \ c \ rts \泰斯特\ A.EXE

我相信GCC不会编译16位软件,因为它是最后一个版本

0 个答案:

没有答案