KS2008: Linux 3.0
Posted Sep 16, 2008 14:42 UTC (Tue) by
bfields (subscriber, #19510)
In reply to:
KS2008: Linux 3.0 by dlang
Parent article:
KS2008: Linux 3.0
the quick-and-dirty test program I compiled over the weekend produced a file a.out when I did gcc filename.c, so I would assume that this is still the a.out format.
bfields@pig:~$ cat >test.c
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("hello world\n");
}
bfields@pig:~$ gcc test.c
bfields@pig:~$ file a.out
a.out: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for
GNU/Linux 2.6.8, dynamically linked (uses shared libs), not stripped
(Woah, I just wrote a whole program with "cat >test.c", I must be 133t!)
(
Log in to post comments)