The CFLAGS='...' is all of your optimizations.
Mine looks like '-march=athlon-tbird -O2 -pipe -funroll-loops'
The second line is for the C++ compiler to use. You can have different optimizations for each compiler.
PS: -funroll-loops is another optimization. I'm looking for this guide I found, but can't find anymore...
|