Most UNIX C compilers link executables by default to a file called "a.out". Why? Is this a written standard or just de-facto standard behavior? What would break if these compilers would just produce an error message (or use a different default name) instead of producing "a.out"?
|
|
a.out stands for assembler output. |
||||
|
|
|
A.out is actually the name of an UNIX executable file format. (ELF is another) The compiler produces that name (by tradition) if you don't give your executable a name explicitly.
Nothing would break, but what do you mean by 'error out'? Do you mean, refuse to compile unless an executable name is supplied to the linker ? |
||
|
|
|
|
|
||
|
|
