>===== Original Message From [email protected] ===== > steps a) and b) used the same library. So it is not an increase in the > library size. The crucial thing was that the compiler was significantly > change soas to require more ram to compile the test library.
* Use -Os, and * Make sure -g is not being used. The former option, a standard flag for production code on MacOS X, tells GCC to optimise for size, while the latter turns on debugging flags. -- Michael JasonSmith http://ldots.org/
