cc_exe = 'icc -g -fomit-frame-pointer -xT -fast'


Just some comments on that :
- in release mode, you should not use '-g', it slows down the execution of your program
- -fast uses -xT for the moment ;)
- -fomit-pointer is the default as soon as there is no -O0 or -g

Matthieu