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
5ca2b102
Kaydet (Commit)
5ca2b102
authored
Ara 10, 2016
tarafından
Xavier de Gaye
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #28849: Merge 3.6.
üst
5c7198d4
32cf1acd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
48 deletions
+6
-48
test_sysconfig.py
Lib/test/test_sysconfig.py
+2
-2
NEWS
Misc/NEWS
+2
-0
configure
configure
+1
-23
configure.ac
configure.ac
+1
-23
No files found.
Lib/test/test_sysconfig.py
Dosyayı görüntüle @
5ca2b102
...
...
@@ -385,7 +385,8 @@ class TestSysConfig(unittest.TestCase):
self
.
assertIsNotNone
(
vars
[
'SO'
])
self
.
assertEqual
(
vars
[
'SO'
],
vars
[
'EXT_SUFFIX'
])
@unittest.skipUnless
(
sys
.
platform
==
'linux'
,
'Linux-specific test'
)
@unittest.skipUnless
(
hasattr
(
sys
.
implementation
,
'_multiarch'
),
'multiarch-specific test'
)
def
test_triplet_in_ext_suffix
(
self
):
ctypes
=
import_module
(
'ctypes'
)
import
platform
,
re
...
...
@@ -396,7 +397,6 @@ class TestSysConfig(unittest.TestCase):
if
re
.
match
(
'(i[3-6]86|x86_64)$'
,
machine
):
if
ctypes
.
sizeof
(
ctypes
.
c_char_p
())
==
4
:
self
.
assertTrue
(
suffix
.
endswith
(
'i386-linux-gnu.so'
)
or
suffix
.
endswith
(
'i686-linux-android.so'
)
or
suffix
.
endswith
(
'x86_64-linux-gnux32.so'
),
suffix
)
else
:
# 8 byte pointer size
...
...
Misc/NEWS
Dosyayı görüntüle @
5ca2b102
...
...
@@ -528,6 +528,8 @@ Documentation
Build
-----
-
Issue
#
28849
:
Do
not
define
sys
.
implementation
.
_multiarch
on
Android
.
-
Issue
#
10656
:
Fix
out
-
of
-
tree
building
on
AIX
.
Patch
by
Tristan
Carel
and
Michael
Haubenwallner
.
...
...
configure
Dosyayı görüntüle @
5ca2b102
...
...
@@ -5218,29 +5218,7 @@ cat >> conftest.c <<EOF
#undef sparc
#undef unix
#if defined(__ANDROID__)
# if defined(__x86_64__) && defined(__LP64__)
x86_64-linux-android
# elif defined(__i386__)
i686-linux-android
# elif defined(__aarch64__) && defined(__AARCH64EL__)
# if defined(__ILP32__)
aarch64_ilp32-linux-android
# else
aarch64-linux-android
# endif
# elif defined(__ARM_EABI__) && defined(__ARMEL__)
arm-linux-androideabi
# elif defined(__mips_hard_float) && defined(_MIPSEL)
# if _MIPS_SIM == _ABIO32
mipsel-linux-android
# elif _MIPS_SIM == _ABI64
mips64el-linux-android
# else
# error unknown platform triplet
# endif
# else
# error unknown platform triplet
# endif
# Android is not a multiarch system.
#elif defined(__linux__)
# if defined(__x86_64__) && defined(__LP64__)
x86_64-linux-gnu
...
...
configure.ac
Dosyayı görüntüle @
5ca2b102
...
...
@@ -770,29 +770,7 @@ cat >> conftest.c <<EOF
#undef sparc
#undef unix
#if defined(__ANDROID__)
# if defined(__x86_64__) && defined(__LP64__)
x86_64-linux-android
# elif defined(__i386__)
i686-linux-android
# elif defined(__aarch64__) && defined(__AARCH64EL__)
# if defined(__ILP32__)
aarch64_ilp32-linux-android
# else
aarch64-linux-android
# endif
# elif defined(__ARM_EABI__) && defined(__ARMEL__)
arm-linux-androideabi
# elif defined(__mips_hard_float) && defined(_MIPSEL)
# if _MIPS_SIM == _ABIO32
mipsel-linux-android
# elif _MIPS_SIM == _ABI64
mips64el-linux-android
# else
# error unknown platform triplet
# endif
# else
# error unknown platform triplet
# endif
# Android is not a multiarch system.
#elif defined(__linux__)
# if defined(__x86_64__) && defined(__LP64__)
x86_64-linux-gnu
...
...
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