Disable linking extensions with -lpython2.5 for darwin. This should fix bug
#1487105.
This commit is contained in:
parent
658d513328
commit
58f8eba372
|
@ -689,6 +689,11 @@ class build_ext (Command):
|
||||||
# don't extend ext.libraries, it may be shared with other
|
# don't extend ext.libraries, it may be shared with other
|
||||||
# extensions, it is a reference to the original list
|
# extensions, it is a reference to the original list
|
||||||
return ext.libraries + [pythonlib, "m"] + extra
|
return ext.libraries + [pythonlib, "m"] + extra
|
||||||
|
|
||||||
|
elif sys.platform == 'darwin':
|
||||||
|
# Don't use the default code below
|
||||||
|
return ext.libraries
|
||||||
|
|
||||||
else:
|
else:
|
||||||
from distutils import sysconfig
|
from distutils import sysconfig
|
||||||
if sysconfig.get_config_var('Py_ENABLE_SHARED'):
|
if sysconfig.get_config_var('Py_ENABLE_SHARED'):
|
||||||
|
|
Loading…
Reference in New Issue