vote up 3 vote down star
2

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"?

flag

You got a better idea? :) – JP Aug 2 at 6:12

3 Answers

vote up 14 vote down check

a.out stands for assembler output.
I think that justifies why most compilers have this name as default. More info here.

link|flag
1  
a.out is also the name of the executable format. Makes for a nice handy 8.3 filename too though. – Matthew Scharley Aug 2 at 7:16
vote up 2 vote down

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.

What would break if these compilers would just error out instead of producing "a.out"?

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 ?

link|flag
vote up 3 vote down

a.out

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.