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
a10e4a9a
Kaydet (Commit)
a10e4a9a
authored
Ock 25, 2013
tarafından
doko@python.org
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- Issue #17031: Fix running regen in cross builds.
üst
1c90eed8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
2 deletions
+15
-2
regen
Lib/plat-generic/regen
+1
-1
Makefile.pre.in
Makefile.pre.in
+8
-1
NEWS
Misc/NEWS
+2
-0
configure
configure
+2
-0
configure.ac
configure.ac
+2
-0
No files found.
Lib/plat-generic/regen
Dosyayı görüntüle @
a10e4a9a
#! /bin/sh
set
-v
python
$EXE
../../Tools/scripts/h2py.py
-i
'(u_long)'
/usr/include/netinet/in.h
eval
$PYTHON_FOR_BUILD
../../Tools/scripts/h2py.py
-i
"'(u_long)'"
/usr/include/netinet/in.h
Makefile.pre.in
Dosyayı görüntüle @
a10e4a9a
...
...
@@ -203,7 +203,8 @@ BUILDPYTHON= python$(BUILDEXE)
PYTHON_FOR_BUILD
=
@PYTHON_FOR_BUILD@
_PYTHON_HOST_PLATFORM
=
@_PYTHON_HOST_PLATFORM@
HOST_GNU_TYPE
=
@host@
BUILD_GNU_TYPE
=
@build@
HOST_GNU_TYPE
=
@host@
# The task to run while instrument when building the profile-opt target
PROFILE_TASK
=
$(srcdir)
/Tools/pybench/pybench.py
-n
2
--with-gc
--with-syscheck
...
...
@@ -1123,6 +1124,12 @@ $(srcdir)/Lib/$(PLATDIR):
export
DYLD_FRAMEWORK_PATH
;
DYLD_FRAMEWORK_PATH
=
"
`
pwd
`
"
;
\
export
EXE
;
EXE
=
"
$(BUILDEXE)
"
;
\
if
[
-n
"
$(MULTIARCH)
"
]
;
then
export
MULTIARCH
;
MULTIARCH
=
$(MULTIARCH)
;
fi
;
\
export
PYTHON_FOR_BUILD
;
\
if
[
"
$(BUILD_GNU_TYPE)
"
=
"
$(HOST_GNU_TYPE)
"
]
;
then
\
PYTHON_FOR_BUILD
=
"
$(BUILDPYTHON)
"
;
\
else
\
PYTHON_FOR_BUILD
=
"
$(PYTHON_FOR_BUILD)
"
;
\
fi
;
\
cd
$(srcdir)
/Lib/
$(PLATDIR)
;
$(RUNSHARED)
./regen
python-config
:
$(srcdir)/Misc/python-config.in
...
...
Misc/NEWS
Dosyayı görüntüle @
a10e4a9a
...
...
@@ -539,6 +539,8 @@ Tests
Build
-----
- Issue #17031: Fix running regen in cross builds.
- Issue #3754: fix typo in pthread AC_CACHE_VAL.
- Issue #15484: Fix _PYTHON_PROJECT_BASE for srcdir != builddir builds;
...
...
configure
Dosyayı görüntüle @
a10e4a9a
...
...
@@ -2926,6 +2926,8 @@ case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
if
test
"
$cross_compiling
"
=
yes
;
then
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for python interpreter for cross build"
>
&5
$as_echo_n
"checking for python interpreter for cross build... "
>
&6
;
}
...
...
configure.ac
Dosyayı görüntüle @
a10e4a9a
...
...
@@ -50,6 +50,8 @@ AC_CONFIG_SRCDIR([Include/object.h])
AC_CONFIG_HEADER(pyconfig.h)
AC_CANONICAL_HOST
AC_SUBST(build)
AC_SUBST(host)
if test "$cross_compiling" = yes; then
AC_MSG_CHECKING([for python interpreter for cross build])
...
...
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