Re: [Pyobjc-dev] Problem building pyobjc from SVN
Brought to you by:
ronaldoussoren
From: Ronald O. <ron...@ma...> - 2009-05-13 19:30:37
|
On 13 May, 2009, at 21:26, James Kelly wrote: > On 4/16/09 3:36 AM, "Ronald Oussoren" <ron...@ma...> wrote: >> Yikes, I really need to start testing with a standard build of Python >> again. My guess is that the problem is caused by ' -isysroot / >> Developer/SDKs/MacOSX10.4u.sdk ' in the compiler flags below. This >> forces the compiler to use the system headers for 10.4, even when >> building on 10.5. >> >> I have an idea on how to work around this (basicly force usage of - >> isysroot=/ on OSX 10.5 or later), but won't have time to commit >> such a >> change today. > > Hi Ronald, > > I'm having the same problem (except I'm attempting to use Python > 2.6). I > tried changing -isysroot to / instead of /Developer/SDKs/ > MacOSX10.4u.sdk, > but while it got further it still failed to completely install > (failed with > the message I'll paste below). Any ideas? Easy_install fails with a > similar error. Your problem is that you have some non-universal libraries installed in /usr/local, which get picked up by the compiler. Getting the compiler to ignore /usr/local is annoyingly hard although I'll probably try to find a clean way to do that. Luckily that would only be needed in pyobjc core, which already has a complicated setup.py script. Ronald |