计算机A运行Windows 7 x64。计算机B运行Windows 7 x86。我正在使用Eclipse,Ant和MinGW-w64在计算机A上编译该文件。该文件在计算机A上正常运行,但在计算机B上我收到以下错误:
此文件的版本与Windows版本不兼容 你在跑。检查计算机的系统信息以查看 是否需要x86(32位)或x64(64位)版本 程序,然后联系软件发行商。
该程序是一个文件main.cpp
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
MessageBox(NULL, "Goodbye, cruel world!", "Note", MB_OK);
return 0;
}
蚂蚁脚本如下:
<?xml version="1.0" encoding="UTF-8" ?>
<project name="winsock" default="build">
<taskdef resource="cpptasks.tasks">
<classpath>
<pathelement location="E:\_dev\windows\MinGW\msys\home\windoze\projects\Winplay\lib\cpptasks.jar"/>
</classpath>
</taskdef>
<taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath>
<pathelement location="E:\_dev\windows\MinGW\msys\home\windoze\projects\Winplay\lib\ant-contrib.jar" />
</classpath>
</taskdef>
<target name="build">
<mkdir dir="build" />
<mkdir dir="build/obj" />
<cc name="g++" objdir="build/obj" debug="${debug}">
<fileset dir="src" includes="*.cpp" />
<compiler name="g++">
<compilerarg value="-std=c++11" />
</compiler>
</cc>
<condition property="debugoption" value="-g -O0" else="-O2">
<isset property="debug" />
</condition>
<fileset dir="build/obj" id="objects" >
<include name="*.o" />
</fileset>
<pathconvert pathsep=" " property="objectslinker" refid="objects" />
<!-- Due to a bug in GppLinker.java in cpptasks.jar, we must exec g++ because GppLinker erroneously uses gcc, which breaks exception handling. -->
<exec command="g++ -std=c++11 -mwindows ${debugoption} -o build/winplay ${objectslinker}" failonerror="true" />
</target>
<target name="clean">
<delete dir="build" />
</target>
</project>
为什么.exe会在我的系统上运行,而不是具有相同Windows的系统?我是否需要执行类似静态链接到MinGW使用的Windows定义的内容?
答案 0 :(得分:2)
您正在生成64位可执行文件,并且它与任何32位版本的Windows都不兼容(请注意,相反的情况并非如此,如果您生成了32位可执行文件,则将与64位Windows兼容......)
要生成32位版本的可执行文件,请检查eclipse上的“项目选项”。你必须在antfile和项目选项中的某个地方-march=i686
。 Eclipse可能在其界面上有一个复选框/组合框......