From: John C. <jt...@gm...> - 2010-03-05 13:53:13
|
> > > > This is a known problem when using a non-Apple supplied Python install: > > http://bugs.python.org/issue6957 > > The bug has more details, but the basic workaround is to install the 10.4 > SDK (it's an optional package when installing Xcode) and using GCC 4.0 > instead of the default 4.2. > > -- > Ben > > I had tried downloading the 10.4 SDK and setting GCC to 4.0, since that is what worked for building other python packages, but it didn't seem to work for this. In the setup.cfg file I put in this parameter: extra_compile_args = -isysroot /Developer/SDKs/MacOSX10.6.sdk and that seemed to do the trick. John |