Re: [Python-Dev] Distutils and -framework on MacOSX

2007-04-04 Thread Greg Ewing
Ronald Oussoren wrote: Could you create an example where adding -framework to the end of the command-line doesn't work? I'll see what I can do. -- Greg ___ Python-Dev mailing list Python-Dev@python.org

Re: [Python-Dev] Distutils and -framework on MacOSX

2007-04-03 Thread Ronald Oussoren
On 30 Mar, 2007, at 7:27, Greg Ewing wrote: Ronald Oussoren wrote: What's wrong with adding -framework flags to the end? I do this all the time and have yet to run into problems. I don't know what's wrong. Sometimes it works for me too, but often it doesn't, and when it doesn't,

[Python-Dev] Distutils and -framework on MacOSX

2007-03-29 Thread Greg Ewing
Has anyone found a way of persuading distutils to pass MacOSX -framework options properly when linking? Using extra_link_args doesn't work, because they need to be at the beginning of the command line to work properly, but extra_link_args gets put at the end. And extra_compile_args is only used

Re: [Python-Dev] Distutils and -framework on MacOSX

2007-03-29 Thread Ronald Oussoren
On 29 Mar, 2007, at 11:37, Greg Ewing wrote: Has anyone found a way of persuading distutils to pass MacOSX -framework options properly when linking? Using extra_link_args doesn't work, because they need to be at the beginning of the command line to work properly, but extra_link_args gets put

Re: [Python-Dev] Distutils and -framework on MacOSX

2007-03-29 Thread Greg Ewing
Ronald Oussoren wrote: What's wrong with adding -framework flags to the end? I do this all the time and have yet to run into problems. I don't know what's wrong. Sometimes it works for me too, but often it doesn't, and when it doesn't, putting them at the front seems to fix it. Apple's man