Hi.
I'm trying to build Ogg Vorbis under Linux. I've tried with gcc-2.95 and gcc-3.2.
The binary which was produced by gcc-3.2 is a little bit faster (around 2-3%), here is how I made it:
- export CC=gcc-3.2
- export CFLAGS="-march=pentium2 -mcpu=pentium2" (I have a pentium II 233)
- ./configure
- make
Is there any flags that I can pass to gcc to optimize the result ?
I've made a similar build with lame, the gcc-3.2(+asm) version is 15 % faster than the gcc-2.95(+asm) version.