Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
254b309c
Kaydet (Commit)
254b309c
authored
Nis 29, 2019
tarafından
xdegaye
Kaydeden (comit)
Victor Stinner
Nis 29, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-21536: On Android, C extensions are linked to libpython (GH-12989)
üst
b021ba50
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
47 additions
and
10 deletions
+47
-10
apiref.rst
Doc/distutils/apiref.rst
+2
-1
3.8.rst
Doc/whatsnew/3.8.rst
+6
-6
build_ext.py
Lib/distutils/command/build_ext.py
+15
-0
Makefile.pre.in
Makefile.pre.in
+1
-0
2019-04-25-01-51-52.bpo-21536.ACQkiC.rst
...EWS.d/next/Build/2019-04-25-01-51-52.bpo-21536.ACQkiC.rst
+1
-1
python-config.in
Misc/python-config.in
+4
-1
python-config.sh.in
Misc/python-config.sh.in
+1
-1
configure
configure
+9
-0
configure.ac
configure.ac
+8
-0
No files found.
Doc/distutils/apiref.rst
Dosyayı görüntüle @
254b309c
...
...
@@ -279,7 +279,8 @@ the full reference.
.. versionchanged:: 3.8
On Unix, C extensions are no longer linked to libpython.
On Unix, C extensions are no longer linked to libpython except on
Android.
.. class:: Distribution
...
...
Doc/whatsnew/3.8.rst
Dosyayı görüntüle @
254b309c
...
...
@@ -883,12 +883,12 @@ Changes in the Python API
Changes in the C API
--------------------
* On Unix, C extensions are no longer linked to libpython
. When Python is
embedded, ``libpython`` must not be loaded with ``RTLD_LOCAL``, but
``RTLD_
GLOBAL`` instead. Previously, using ``RTLD_LOCAL``, it was already not
possible to load C extensions which were not linked to ``libpython``, like C
extensions of the standard library built by the ``*shared*`` section of
``Modules/Setup``.
* On Unix, C extensions are no longer linked to libpython
except on
Android. When Python is embedded, ``libpython`` must not be loaded with
``RTLD_
LOCAL``, but ``RTLD_GLOBAL`` instead. Previously, using
``RTLD_LOCAL``, it was already not possible to load C extensions which were
not linked to ``libpython``, like C extensions of the standard library built
by the ``*shared*`` section of
``Modules/Setup``.
* Use of ``#`` variants of formats in parsing or building value (e.g.
:c:func:`PyArg_ParseTuple`, :c:func:`Py_BuildValue`, :c:func:`PyObject_CallFunction`,
...
...
Lib/distutils/command/build_ext.py
Dosyayı görüntüle @
254b309c
...
...
@@ -714,5 +714,20 @@ class build_ext(Command):
# don't extend ext.libraries, it may be shared with other
# extensions, it is a reference to the original list
return
ext
.
libraries
+
[
pythonlib
]
# On Android only the main executable and LD_PRELOADs are considered
# to be RTLD_GLOBAL, all the dependencies of the main executable
# remain RTLD_LOCAL and so the shared libraries must be linked with
# libpython when python is built with a shared python library (issue
# bpo-21536).
else
:
from
distutils.sysconfig
import
get_config_var
if
get_config_var
(
'Py_ENABLE_SHARED'
):
# Either a native build on an Android device or the
# cross-compilation of Python.
if
(
hasattr
(
sys
,
'getandroidapilevel'
)
or
(
'_PYTHON_HOST_PLATFORM'
in
os
.
environ
and
get_config_var
(
'ANDROID_API_LEVEL'
)
!=
0
)):
ldversion
=
get_config_var
(
'LDVERSION'
)
return
ext
.
libraries
+
[
'python'
+
ldversion
]
return
ext
.
libraries
Makefile.pre.in
Dosyayı görüntüle @
254b309c
...
...
@@ -41,6 +41,7 @@ AR= @AR@
READELF
=
@READELF@
SOABI
=
@SOABI@
LDVERSION
=
@LDVERSION@
LIBPYTHON
=
@LIBPYTHON@
GITVERSION
=
@GITVERSION@
GITTAG
=
@GITTAG@
GITBRANCH
=
@GITBRANCH@
...
...
Misc/NEWS.d/next/Build/2019-04-25-01-51-52.bpo-21536.ACQkiC.rst
Dosyayı görüntüle @
254b309c
On Unix, C extensions are no longer linked to libpython.
On Unix, C extensions are no longer linked to libpython
except on Android
.
It is now possible for a statically linked Python to load a C extension built
using a shared library Python.
...
...
Misc/python-config.in
Dosyayı görüntüle @
254b309c
...
...
@@ -47,7 +47,10 @@ for opt in opt_flags:
print
(
' '
.
join
(
flags
))
elif
opt
in
(
'--libs'
,
'--ldflags'
):
libs
=
getvar
(
'LIBS'
)
.
split
()
+
getvar
(
'SYSLIBS'
)
.
split
()
libpython
=
getvar
(
'LIBPYTHON'
)
libs
=
[
libpython
]
if
libpython
else
[]
libs
.
extend
(
getvar
(
'LIBS'
)
.
split
()
+
getvar
(
'SYSLIBS'
)
.
split
())
# add the prefix/lib/pythonX.Y/config dir, but only if there is no
# shared library in prefix/lib/.
if
opt
==
'--ldflags'
:
...
...
Misc/python-config.sh.in
Dosyayı görüntüle @
254b309c
...
...
@@ -41,7 +41,7 @@ LIBM="@LIBM@"
LIBC
=
"@LIBC@"
SYSLIBS
=
"
$LIBM
$LIBC
"
ABIFLAGS
=
"@ABIFLAGS@"
LIBS
=
"@LIBS@
$SYSLIBS
"
LIBS
=
"@LIB
PYTHON@ @LIB
S@
$SYSLIBS
"
BASECFLAGS
=
"@BASECFLAGS@"
LDLIBRARY
=
"@LDLIBRARY@"
OPT
=
"@OPT@"
...
...
configure
Dosyayı görüntüle @
254b309c
...
...
@@ -631,6 +631,7 @@ SRCDIRS
THREADHEADERS
LIBPL
PY_ENABLE_SHARED
LIBPYTHON
EXT_SUFFIX
ALT_SOABI
SOABI
...
...
@@ -15154,6 +15155,14 @@ LDVERSION='$(VERSION)$(ABIFLAGS)'
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $LDVERSION" >&5
$as_echo "$LDVERSION" >&6; }
# On Android the shared libraries must be linked with libpython.
if test -z "$ANDROID_API_LEVEL"; then
LIBPYTHON=''
else
LIBPYTHON="-lpython${VERSION}${ABIFLAGS}"
fi
if test x$PLATFORM_TRIPLET = x; then
LIBPL='$(prefix)'"/lib/python${VERSION}/config-${LDVERSION}"
...
...
configure.ac
Dosyayı görüntüle @
254b309c
...
...
@@ -4648,6 +4648,14 @@ AC_MSG_CHECKING(LDVERSION)
LDVERSION='$(VERSION)$(ABIFLAGS)'
AC_MSG_RESULT($LDVERSION)
# On Android the shared libraries must be linked with libpython.
AC_SUBST(LIBPYTHON)
if test -z "$ANDROID_API_LEVEL"; then
LIBPYTHON=''
else
LIBPYTHON="-lpython${VERSION}${ABIFLAGS}"
fi
dnl define LIBPL after ABIFLAGS and LDVERSION is defined.
AC_SUBST(PY_ENABLE_SHARED)
if test x$PLATFORM_TRIPLET = x; then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment