|
|
RE: optimization : # a C file within a C file : compiler question
|
|
12/04/2007 9:58 AM
post3298
|
RE: optimization : # a C file within a C file : compiler question
On Tue, 2007-12-04 at 09:32 -0500, Aleksandar Ristovski wrote:
> This is a process that happens before compilation and therefore has no
> effect on optimizations.
Well, partly true. The compiler cannot optimize accross object files.
Whereas it can optimize within an object file. So, if you:
cat *.c >big.c
and compile big.c, then you may get more optimized code than if you
compile all the .c files seperately.
|
|
|
|
|