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
4afd143d
Kaydet (Commit)
4afd143d
authored
Tem 07, 2016
tarafından
Xavier de Gaye
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #27434: Version of interpreter running a cross-build and source version must be the same.
üst
2954f839
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
NEWS
Misc/NEWS
+3
-0
configure
configure
+1
-1
configure.ac
configure.ac
+1
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
4afd143d
...
...
@@ -132,6 +132,9 @@ C API
Build
-----
-
Issue
#
27434
:
The
interpreter
that
runs
the
cross
-
build
,
found
in
PATH
,
must
now
be
of
the
same
feature
version
(
e
.
g
.
3.6
)
as
the
source
being
built
.
-
Issue
#
26930
:
Update
Windows
builds
to
use
OpenSSL
1.0.2
h
.
-
Issue
#
23968
:
Rename
the
platform
directory
from
plat
-$(
MACHDEP
)
to
...
...
configure
Dosyayı görüntüle @
4afd143d
...
...
@@ -3002,7 +3002,7 @@ $as_echo_n "checking for python interpreter for cross build... " >&6; }
if
test
-z
"
$PYTHON_FOR_BUILD
"
;
then
for
interp
in
python
$PACKAGE_VERSION
python3 python
;
do
which
$interp
>
/dev/null 2>&1
||
continue
if
$interp
-c
'import sys;sys.exit(not sys.version_info[:2] >= (3,3))'
;
then
if
$interp
-c
"import sys;sys.exit(not '.'.join(str(n) for n in sys.version_info[:2]) == '
$PACKAGE_VERSION
')"
;
then
break
fi
interp
=
...
...
configure.ac
Dosyayı görüntüle @
4afd143d
...
...
@@ -62,7 +62,7 @@ if test "$cross_compiling" = yes; then
if test -z "$PYTHON_FOR_BUILD"; then
for interp in python$PACKAGE_VERSION python3 python; do
which $interp >/dev/null 2>&1 || continue
if $interp -c
'import sys;sys.exit(not sys.version_info@<:@:2@:>@ >= (3,3))'
; then
if $interp -c
"import sys;sys.exit(not '.'.join(str(n) for n in sys.version_info@<:@:2@:>@) == '$PACKAGE_VERSION')"
; then
break
fi
interp=
...
...
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