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
e9ee3170
Kaydet (Commit)
e9ee3170
authored
Nis 23, 2016
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #22359: Avoid recursive $(MAKE); disable running cross-compiled pgen
Patches by Jonas Wagner and Xavier de Gaye.
üst
f6f617c5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
7 deletions
+21
-7
Makefile.pre.in
Makefile.pre.in
+14
-7
NEWS
Misc/NEWS
+5
-0
configure
configure
+1
-0
configure.ac
configure.ac
+1
-0
No files found.
Makefile.pre.in
Dosyayı görüntüle @
e9ee3170
...
@@ -200,6 +200,7 @@ UNICODE_OBJS= @UNICODE_OBJS@
...
@@ -200,6 +200,7 @@ UNICODE_OBJS= @UNICODE_OBJS@
PYTHON
=
python
$(EXE)
PYTHON
=
python
$(EXE)
BUILDPYTHON
=
python
$(BUILDEXE)
BUILDPYTHON
=
python
$(BUILDEXE)
cross_compiling
=
@cross_compiling@
PYTHON_FOR_BUILD
=
@PYTHON_FOR_BUILD@
PYTHON_FOR_BUILD
=
@PYTHON_FOR_BUILD@
_PYTHON_HOST_PLATFORM
=
@_PYTHON_HOST_PLATFORM@
_PYTHON_HOST_PLATFORM
=
@_PYTHON_HOST_PLATFORM@
HOST_GNU_TYPE
=
@host@
HOST_GNU_TYPE
=
@host@
...
@@ -677,13 +678,19 @@ Modules/grpmodule.o: $(srcdir)/Modules/grpmodule.c $(srcdir)/Modules/posixmodule
...
@@ -677,13 +678,19 @@ Modules/grpmodule.o: $(srcdir)/Modules/grpmodule.c $(srcdir)/Modules/posixmodule
Modules/pwdmodule.o
:
$(srcdir)/Modules/pwdmodule.c $(srcdir)/Modules/posixmodule.h
Modules/pwdmodule.o
:
$(srcdir)/Modules/pwdmodule.c $(srcdir)/Modules/posixmodule.h
$(GRAMMAR_H)
:
$(GRAMMAR_INPUT) $(PGENSRCS)
$(GRAMMAR_H)
:
$(GRAMMAR_INPUT) $(PGEN)
@
$(MKDIR_P)
Include
@
$(MKDIR_P)
Include
$(MAKE)
$(PGEN)
if
test
"
$(cross_compiling)
"
!=
"yes"
;
then
\
$(PGEN)
$(GRAMMAR_INPUT)
$(GRAMMAR_H)
$(GRAMMAR_C)
$(PGEN)
$(GRAMMAR_INPUT)
$(GRAMMAR_H)
$(GRAMMAR_C)
;
\
$(GRAMMAR_C)
:
$(GRAMMAR_H) $(GRAMMAR_INPUT) $(PGENSRCS)
else
\
$(MAKE)
$(GRAMMAR_H)
cp
$(srcdir)
/Include/graminit.h
$(GRAMMAR_H)
;
\
touch
$(GRAMMAR_C)
fi
$(GRAMMAR_C)
:
$(GRAMMAR_H)
if
test
"
$(cross_compiling)
"
!=
"yes"
;
then
\
touch
$(GRAMMAR_C)
;
\
else
\
cp
$(srcdir)
/Python/graminit.c
$(GRAMMAR_C)
;
\
fi
$(PGEN)
:
$(PGENOBJS)
$(PGEN)
:
$(PGENOBJS)
$(CC)
$(OPT)
$(LDFLAGS)
$(PGENOBJS)
$(LIBS)
-o
$(PGEN)
$(CC)
$(OPT)
$(LDFLAGS)
$(PGENOBJS)
$(LIBS)
-o
$(PGEN)
...
...
Misc/NEWS
Dosyayı görüntüle @
e9ee3170
...
@@ -225,6 +225,11 @@ Tests
...
@@ -225,6 +225,11 @@ Tests
Build
Build
-----
-----
- Issue #22359: Avoid incorrect recursive $(MAKE), and disable the rules for
running pgen when cross-compiling. The pgen output is normally saved with
the source code anyway, and is still regenerated when doing a native build.
Patch by Jonas Wagner and Xavier de Gaye.
- Issue #19450: Update Windows builds to use SQLite 3.8.11.0.
- Issue #19450: Update Windows builds to use SQLite 3.8.11.0.
- Issue #17603: Avoid error about nonexistant fileblocks.o file by using a
- Issue #17603: Avoid error about nonexistant fileblocks.o file by using a
...
...
configure
Dosyayı görüntüle @
e9ee3170
...
@@ -743,6 +743,7 @@ build_os
...
@@ -743,6 +743,7 @@ build_os
build_vendor
build_vendor
build_cpu
build_cpu
build
build
cross_compiling
target_alias
target_alias
host_alias
host_alias
build_alias
build_alias
...
...
configure.ac
Dosyayı görüntüle @
e9ee3170
...
@@ -12,6 +12,7 @@ AC_INIT(python, PYTHON_VERSION, http://bugs.python.org/)
...
@@ -12,6 +12,7 @@ AC_INIT(python, PYTHON_VERSION, http://bugs.python.org/)
AC_CONFIG_SRCDIR([Include/object.h])
AC_CONFIG_SRCDIR([Include/object.h])
AC_CONFIG_HEADER(pyconfig.h)
AC_CONFIG_HEADER(pyconfig.h)
AC_SUBST(cross_compiling)
AC_CANONICAL_HOST
AC_CANONICAL_HOST
AC_SUBST(build)
AC_SUBST(build)
AC_SUBST(host)
AC_SUBST(host)
...
...
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