|
From: Nicholas N. <nj...@ca...> - 2004-06-19 20:51:21
|
On Sat, 19 Jun 2004, Igmar Palsenberg wrote: > [igmar@ouzo igmar]$ gcc -o x -g x.c > [igmar@ouzo igmar]$ file x > x: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux > 2.2.5, dynamically linked (uses shared libs), not stripped > > [igmar@ouzo igmar]$ gcc -g -o x x.c > [igmar@ouzo igmar]$ file x > x: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux > 2.2.5, dynamically linked (uses shared libs), not stripped > > Basic rule : Don't include things that affect the actual generated stuff > after -o. I'm confused -- what's the difference between the resulting files? N |