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
e0a669e5
Kaydet (Commit)
e0a669e5
authored
Ara 15, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Close #13596: Only recompile Lib/_sysconfigdata.py when needed
üst
57c9c7b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
Makefile.pre.in
Makefile.pre.in
+7
-6
No files found.
Makefile.pre.in
Dosyayı görüntüle @
e0a669e5
...
...
@@ -379,6 +379,7 @@ OBJECT_OBJS= \
Objects/unicodectype.o
\
Objects/weakrefobject.o
SYSCONFIGDATA
=
$(srcdir)
/Lib/_sysconfigdata.py
##########################################################################
# objects that get linked into the Python library
...
...
@@ -396,7 +397,7 @@ LIBRARY_OBJS= \
# Default target
all
:
build_all
build_all
:
$(BUILDPYTHON)
sysconfig
oldsharedmods sharedmods gdbhooks Modules/_testembed
build_all
:
$(BUILDPYTHON)
$(SYSCONFIGDATA)
oldsharedmods sharedmods gdbhooks Modules/_testembed
# Compile a binary with gcc profile guided optimization.
profile-opt
:
...
...
@@ -429,15 +430,15 @@ coverage:
$(BUILDPYTHON)
:
Modules/python.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY)
$(LINKCC)
$(PY_LDFLAGS)
$(LINKFORSHARED)
-o
$@
Modules/python.o
$(BLDLIBRARY)
$(LIBS)
$(MODLIBS)
$(SYSLIBS)
$(LDLAST)
platform
:
$(BUILDPYTHON)
sysconfig
platform
:
$(BUILDPYTHON)
$(SYSCONFIGDATA)
$(RUNSHARED)
./
$(BUILDPYTHON)
-E
-c
'import sys ; from sysconfig import get_platform ; print(get_platform()+"-"+sys.version[0:3])'
>
platform
# Generate the sysconfig build-time data
sysconfig
:
$(BUILDPYTHON)
$(SYSCONFIGDATA)
:
$(BUILDPYTHON)
$(RUNSHARED)
./
$(BUILDPYTHON)
-SE
-m
sysconfig
--generate-posix-vars
# Build the shared modules
sharedmods
:
$(BUILDPYTHON)
sysconfig
sharedmods
:
$(BUILDPYTHON)
$(SYSCONFIGDATA)
@
case
$$
MAKEFLAGS
in
\
*
s
*
)
$(RUNSHARED)
CC
=
'
$(CC)
'
LDSHARED
=
'
$(BLDSHARED)
'
OPT
=
'
$(OPT)
'
./
$(BUILDPYTHON)
-E
$(srcdir)
/setup.py
-q
build
;;
\
*
)
$(RUNSHARED)
CC
=
'
$(CC)
'
LDSHARED
=
'
$(BLDSHARED)
'
OPT
=
'
$(OPT)
'
./
$(BUILDPYTHON)
-E
$(srcdir)
/setup.py build
;;
\
...
...
@@ -1315,7 +1316,7 @@ clean: pycremoval
find build
-name
'fficonfig.h'
-exec
rm
-f
{}
';'
||
true
find build
-name
'fficonfig.py'
-exec
rm
-f
{}
';'
||
true
-
rm
-f
Lib/lib2to3/
*
Grammar
*
.pickle
-
rm
-f
Lib/_sysconfigdata.py
-
rm
-f
$(SYSCONFIGDATA)
-
rm
-f
Modules/_testembed
profile-removal
:
...
...
@@ -1393,7 +1394,7 @@ patchcheck:
Python/thread.o
:
@THREADHEADERS@
# Declare targets that aren't real files
.PHONY
:
all build_all s
ysconfig s
haredmods oldsharedmods test quicktest
.PHONY
:
all build_all sharedmods oldsharedmods test quicktest
.PHONY
:
install altinstall oldsharedinstall bininstall altbininstall
.PHONY
:
maninstall libinstall inclinstall libainstall sharedinstall
.PHONY
:
frameworkinstall frameworkinstallframework frameworkinstallstructure
...
...
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