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
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to