2010/4/16 Charles سمير Doutriaux <[email protected]> > Hi There, > > 1.4.1rc2 > gcc 4.2.1 > > And yes I'm trying to build a 32bit python because a lot of externals seem > to be breaking with the 64bit stuff... > > But I'm giving it another shot building 64bit >
For 64-bit the command is: $ LDFLAGS="-arch x86_64" FFLAGS="-arch x86_64" python setup.py install or equivalent with numscons. For 32-bit $ python setup.py install should work, but the compiler should be gcc-4.0 (when building against python.org python this happens automatically), even though your default compiler is gcc-4.2. Also, you need to have the 10.4SDK installed from XCode optional installs. Cheers, Ralf
_______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
