O flag to use?
There’s a common misconception that larger numbers behind the -O option might automatically cause ‘better’ optimization. First, there’s no universal definition for ‘better’, with optimization often being a speed vs. code size tradeoff. See the detailed discussion for which option affects which part of the code generation. A test case was run on an ATmega128 to judge the effect of compiling the library itself using different optimization levels. The following table lists the results. The test case consisted of around 2 KB of strings to sort. Test #1 used qsort() using the standard library strcmp(), test #2 used a function that sorted the strings by their size (thus had two calls to strlen() per invocation). When comparing the resulting code size, it should be noted that a floating point version of fvprintf() was linked into the binary (in order to print out the time elapsed) which is entirely not affected by the different optimization levels, and added about 2.5 KB to the code. Optimiza