Re: [boost] Re: MPL Code bloat on GCC

2003-02-04 Thread David A. Greene
Jaap Suter wrote: Try turning off debug symbols; GCC spends a long time and a lot of disk generating them. Thanks, works excellent! In fact, my GCC object files and executables are the smallest now. Yep, I came to the same conclusion. Unfortunately, it does not help much when you need to

Re: [boost] Re: MPL Code bloat on GCC

2003-02-04 Thread Dave Abrahams
On Tuesday, February 04, 2003 5:27 PM [GMT+1=CET], David A. Greene [EMAIL PROTECTED] wrote: Jaap Suter wrote: Try turning off debug symbols; GCC spends a long time and a lot of disk generating them. Thanks, works excellent! In fact, my GCC object files and executables are the

[boost] Re: MPL Code bloat on GCC

2003-01-25 Thread Jaap Suter
Try turning off debug symbols; GCC spends a long time and a lot of disk generating them. Thanks, works excellent! In fact, my GCC object files and executables are the smallest now. I was under the assumption that the -O3 option (full optimization) would remove the debug information. Sorry for