I mean could a single binary file run in both Win32 and Linux i386 ?
|
feedback
|
|
This is not possible, because the two types have conflicting formats:
Clearly, you can't create one file that satisifies both formats. In response to the comment about a polyglot binary valid as both a 16 bit COM file and a Linux ELF file, that's possible (although really a COM file is a DOS program, not Windows - and certainly not Win32). Here's one I knocked together - compile it with NASM. It works because the first two bytes of an ELF file (
| |||||||||||||
feedback
|
|
Sure. Use Java. | |||||
feedback
|
|
The two formats are sufficiently different that a hybrid is unlikely. However, Linux supports loading different executable formats by "interpreter". This way compiled | |||||||
feedback
|