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
3c397e4c
Kaydet (Commit)
3c397e4c
authored
Eyl 06, 2016
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix out-of-tree builds for blake2
üst
b9d9eeda
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
Makefile.pre.in
Makefile.pre.in
+4
-4
setup.py
setup.py
+2
-2
No files found.
Makefile.pre.in
Dosyayı görüntüle @
3c397e4c
...
...
@@ -541,7 +541,7 @@ coverage-report:
# Run "Argument Clinic" over all source files
# (depends on python having already been built)
.PHONY
=
clinic
clinic
:
$(BUILDPYTHON) Modules/_blake2/blake2s_impl.c
clinic
:
$(BUILDPYTHON)
$(srcdir)/
Modules/_blake2/blake2s_impl.c
$(RUNSHARED)
$(PYTHON_FOR_BUILD)
./Tools/clinic/clinic.py
--make
# Build the interpreter
...
...
@@ -572,9 +572,9 @@ Modules/_math.o: Modules/_math.c Modules/_math.h
$(CC)
-c
$(CCSHARED)
$(PY_CORE_CFLAGS)
-o
$@
$<
# blake2s is auto-generated from blake2b
Modules/_blake2/blake2s_impl.c
:
$(BUILDPYTHON) Modules/_blake2/blake2b_impl.c
Modules/_blake2/blake2b2s.py
$(RUNSHARED)
$(PYTHON_FOR_BUILD)
Modules/_blake2/blake2b2s.py
$(RUNSHARED)
$(PYTHON_FOR_BUILD)
Tools/clinic/clinic.py
-f
$@
$(srcdir)/Modules/_blake2/blake2s_impl.c
:
$(BUILDPYTHON) $(srcdir)/Modules/_blake2/blake2b_impl.c $(srcdir)/
Modules/_blake2/blake2b2s.py
$(RUNSHARED)
$(PYTHON_FOR_BUILD)
$(srcdir)
/
Modules/_blake2/blake2b2s.py
$(RUNSHARED)
$(PYTHON_FOR_BUILD)
$(srcdir)
/
Tools/clinic/clinic.py
-f
$@
# Build the shared modules
# Under GNU make, MAKEFLAGS are sorted and normalized; the 's' for
...
...
setup.py
Dosyayı görüntüle @
3c397e4c
...
...
@@ -889,8 +889,8 @@ class PyBuildExt(build_ext):
exts
.
append
(
Extension
(
'_sha1'
,
[
'sha1module.c'
],
depends
=
[
'hashlib.h'
])
)
blake2_deps
=
[
os
.
path
.
join
(
'_blake2'
,
'impl'
,
name
)
for
name
in
os
.
listdir
(
'Modules/_blake2/impl'
)]
blake2_deps
=
glob
(
os
.
path
.
join
(
os
.
getcwd
(),
srcdir
,
'Modules/_blake2/impl/*'
))
blake2_deps
.
append
(
'hashlib.h'
)
blake2_macros
=
[]
...
...
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