Re: Pyrex on Darwin, gcc 3.3 optimization trouble

2006-01-01 Thread Will Ware
In case anybody else has this problem, the solution is to add -O in extra_compile_args, which will override the -O3 normally used. This is done in the setup.py file. -- http://mail.python.org/mailman/listinfo/python-list

Pyrex on Darwin, gcc 3.3 optimization trouble

2005-12-30 Thread Will Ware
I am trying to build a Pyrex module on Mac OS X version 10.3.9 (don't know which big cat that is). It already builds fine on Mandrake Linux and Windows XP. I have one source file where gcc hangs if given an optimization setting of -O2 or -O3, but a level of -O works fine. Can anybody suggest an