Joe Wreschnig writes: > I guess I should ask here, too. Does anyone know why Python is compiled > with -O3 rather than -O2? Also, does anyone know the best way to > override distutils on a per-arch basis to change that?
There's only one optimization macro to build the interpreter and the modules. IMO it makes sense to build the interpreter with -O3, and even to build the standard modules like _sre with this optimization level. What can be done, is to lower the opt level after compilation in the package. But as you can see, even with -O2 python2.4 FTBFS on m68k. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]