Hi! Ralph Glasstetter wrote: > OK, > > fine... default compiling with old internal ffmpeg libs is working again! :) > > And you have been right... default is compilation with debug infos switched > on > and I must have done something wrong when producing the scons version, > since the binary is still about 2792743 bytes... SConstruct uses '-O3'!
Explains a lot: -O3 generates larger binaries than -O2 because it does more inlining and loop unrolling. That's not always a good thing, because it assumes big caches and/or many available registers. Therefore, I rarely use -O3 (unless compiling for a RISC box). > BTW if you compile without '-g' and with '-fno-strict-aliasing' it is > no much difference if strip-ed or not... ;-) About 100 KByte ;) -- Michael "Tired" Riepe <[EMAIL PROTECTED]> X-Tired: Each morning I get up I die a little ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ DVBCUT-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dvbcut-user
