How to bind 64-bit and 32-bit executable into one?

浪子不回头ぞ 提交于 2020-01-11 05:13:06

问题


Alright so my idea was some way to bind both 64-bit and 32-bit Windows executables into one application so if it doesn't run the 64-bit version it would then try the 32-bit one.

I was reading up about PE's and learned a little about MS-DOS Real Mode Stub and it says how it invokes an application (usually an error message). But every time I tried to do research about MS-DOS Real Mode Stub it seemed to only show error messages. So my idea was to overwrite the STUB with my 32-bit application.

My self being naive figured when the 32-bit operating system would run the the 64-bit executable it would fail and then run the stub file.

Is there any way to make my executable 32-bit/64-bit independent?


回答1:


You could not create a single executable file, containing both x86 and x64 code. However you could create separate 32bit and 64bit applications, pack x64 app into the x86 app resources. On the program start you could check, that you are running x64 environment using IsWow64Process then if needed, unpack your x64 version and run it instead




回答2:


There are fat binaries in MacOS, Linux and DOS (or hybrid DOS-Windows) but not 32 and 64-bit Windows

You can compile separate versions of the program and then select by a script of another executable

Another way is installing only the desired version at install time. This is used by many programs like CCleaner. The installer is a 32-bit app or a universal one like .NET so that it can run anywhere. If it detects 64-bit Windows then it only install 64-bit version, same to 32-bit version.

Read more:

  • Universal binary
  • Windows 8 fat binary (exe for x86 & ARM)
  • Windows NT has always been a multi-platform OS, but the binaries are not


来源:https://stackoverflow.com/questions/38759982/how-to-bind-64-bit-and-32-bit-executable-into-one

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!