How to recompile software with hardware optimization?
This may be useful for compiling local applications that you want to run faster.
Try this on your computer:
$ echo "" | gcc -march=native -v -E - 2>&1 | grep cc1On my computer it has returned:
/usr/libexec/gcc/x86_64-redhat-linux/4.6.1/cc1 -E -quiet -v - -march=corei7-avx -mcx16 -msahf -mno-movbe -maes -mpclmul -mpopcnt -mno-abm -mno-lwp -mno-fma -mno-fma4 -mno-xop -mno-bmi -mno-tbm -mavx -msse4.2 -msse4.1 --param l1-cache-size=32 --param l1-cache-line-size=64 --param l2-cache-size=4096 -mtune=corei7-avxThis command probes the local computer for optimization flags. To use it:
$ CFLAGS="[blue string from above]" ./configureYou may consider adding the "-O3" flag. The -O3 flag enables levels 1, 2 and 3 of compile time optimization. There are more information about -O3 on gcc man page. For doing it, instead of previous line, use:
$ CFLAGS="-O3 [blue string from above]" ./configure
From: http://blog.mybox.ro/2011/11/02/how-to-recompile-software-with-hardware-optimizations/
Comments