[issue14791] setup.py only adds /prefix/lib, not /prefix/lib64

Ned Deily report at bugs.python.org
Sun Jul 8 06:44:30 CEST 2012


Ned Deily <nad at acm.org> added the comment:

Also OS X universal builds have many of the characteristics of a cross-build.  In particular, one executable (like the python interpreter) can contain both 32-bit and 64-bit architecture files.  So tests for 32-bit vs 64-bit at build time using the running compiler's arch are problematic.  Another issue is the support for building with an OS X SDK.  Basically, all /usr include and lib file paths used for searching in setup.py need to be prefixed by the SDK path if configured.  There are some holes in this right now.  I plan to fix them soon; it would better to have this issue resolved and applied first.

----------
nosy: +ned.deily

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue14791>
_______________________________________


More information about the Python-bugs-list mailing list