As all linux distributions use the same linux kernel, is there any difference between their executable binary files?
If yes, what are the main differences? Or does that mean we can build a universal linux executable file?
|
|
All Linux distributions use the same binary format ELF, but there is still some differences:
So if you want your program to run on all distribution, you may have to statically link a version that depends on the kernel's syscall only, even this you can only run a specified arch. If you really want to run a program on any arch, then you have to compile binaries for all arches, and use a shell script to start up the right one. |
|||
|
|
|
All Linux ports (that is, the Linux kernel on different processors) use ELF as the file format for executables and libraries. A specific ELF binary is labeled with a single architecture/OS on which it can run (although some OSes have compatibility to run ELF binaries from other OSes). Most ports have support for the older a.out format. (Some processors are new enough that there have never existed any a.out executables for them.) Some ports support other executable file formats as well; for example, the PA-RISC port has support for HP-UX's old SOM executables, and the μcLinux (nonmmu) ports support their own FLAT format. Linux also has Linux on Alpha has support for loading Intel binaries, which are run via the It's possible to register In theory, one could create a new format -- perhaps register a new "architecture" in ELF -- for fat binaries. Then the kernel |
|||||
|
|
|
Almost all linux program files use the ELF standard. |
|||||
|
|
|
Old Unixes also used COFF format. You may still find executables from times of yore in this format. Linux still has support for it (I don't know if it's compiled in current distros, though). |
|||
|