This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author samueljohn
Recipients hynek, ned.deily, ronaldoussoren, samueljohn
Date 2013-01-03.11:32:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1357212774.75.0.369526303193.issue16848@psf.upfronthosting.co.za>
In-reply-to
Content
Some tools use `python-config --ldflags` to get the flags in order to link against the Python lib on OS X (for example gst-python from pygtk (2.x).

For framework builds, `python-config --ldflags` returns (among few other):

    -u _PyMac_Error Python.framework/Versions/2.7/Python

which is an incomplete path.

This issue is almost a duplicate of http://bugs.python.org/issue3588 and the fix discussed there would work. However I report this for Python 2.7.

We at Homebrew propose a very similar fix but I'd prefer the one in issue3588:

    LINKFORSHARED = -u _PyMac_Error -framework Python
    LDFLAGS += -F$(PYTHONFRAMEWORKPREFIX)
History
Date User Action Args
2013-01-03 11:32:54samueljohnsetrecipients: + samueljohn, ronaldoussoren, ned.deily, hynek
2013-01-03 11:32:54samueljohnsetmessageid: <1357212774.75.0.369526303193.issue16848@psf.upfronthosting.co.za>
2013-01-03 11:32:54samueljohnlinkissue16848 messages
2013-01-03 11:32:54samueljohncreate