mirror of
https://github.com/python/cpython.git
synced 2025-11-03 19:34:08 +00:00
- merge 3.5
This commit is contained in:
commit
36987d7c8d
2 changed files with 4 additions and 1 deletions
|
|
@ -748,7 +748,7 @@ class build_ext(Command):
|
||||||
if sysconfig.get_config_var('Py_ENABLE_SHARED'):
|
if sysconfig.get_config_var('Py_ENABLE_SHARED'):
|
||||||
pythonlib = 'python{}.{}{}'.format(
|
pythonlib = 'python{}.{}{}'.format(
|
||||||
sys.hexversion >> 24, (sys.hexversion >> 16) & 0xff,
|
sys.hexversion >> 24, (sys.hexversion >> 16) & 0xff,
|
||||||
sys.abiflags)
|
sysconfig.get_config_var('ABIFLAGS'))
|
||||||
return ext.libraries + [pythonlib]
|
return ext.libraries + [pythonlib]
|
||||||
else:
|
else:
|
||||||
return ext.libraries
|
return ext.libraries
|
||||||
|
|
|
||||||
|
|
@ -1286,6 +1286,9 @@ Tests
|
||||||
Build
|
Build
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #26884: Fix linking extension modules for cross builds.
|
||||||
|
Patch by Xavier de Gaye.
|
||||||
|
|
||||||
- Issue #26932: Fixed support of RTLD_* constants defined as enum values,
|
- Issue #26932: Fixed support of RTLD_* constants defined as enum values,
|
||||||
not via macros (in particular on Android). Patch by Chi Hsuan Yen.
|
not via macros (in particular on Android). Patch by Chi Hsuan Yen.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue