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
5951ec0f
Kaydet (Commit)
5951ec0f
authored
Agu 24, 2012
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Pick up 32-bit launcher from PGO directory on 64-bit PGO build.
üst
bddf7244
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
NEWS
Misc/NEWS
+2
-0
msi.py
Tools/msi/msi.py
+7
-4
No files found.
Misc/NEWS
Dosyayı görüntüle @
5951ec0f
...
...
@@ -115,6 +115,8 @@ Tests
Build
-----
-
Pick
up
32
-
bit
launcher
from
PGO
directory
on
64
-
bit
PGO
build
.
-
Drop
PC
\
python_nt
.
h
as
it
's not used. Add input dependency on custom
build step.
...
...
Tools/msi/msi.py
Dosyayı görüntüle @
5951ec0f
...
...
@@ -974,14 +974,17 @@ def add_files(db):
# 32-bit installer.
# XXX does this still allow to install the component on a 32-bit system?
# Pick up 32-bit binary always
launcher
=
os
.
path
.
join
(
srcdir
,
"PCBuild"
,
"py.exe"
)
launchersrc
=
PCBUILD
if
launchersrc
.
lower
()
==
'pcbuild
\\
x64-pgo'
:
launchersrc
=
'PCBuild
\\
win32-pgo'
launcher
=
os
.
path
.
join
(
srcdir
,
launchersrc
,
"py.exe"
)
launcherdir
.
start_component
(
"launcher"
,
flags
=
8
+
256
,
keyfile
=
"py.exe"
)
launcherdir
.
add_file
(
"
%
s/py.exe"
%
PCBUILD
,
launcherdir
.
add_file
(
launcher
,
version
=
installer
.
FileVersion
(
launcher
,
0
),
language
=
installer
.
FileVersion
(
launcher
,
1
))
launcherw
=
os
.
path
.
join
(
srcdir
,
"PCBuild"
,
"pyw.exe"
)
launcherw
=
os
.
path
.
join
(
srcdir
,
launchersrc
,
"pyw.exe"
)
launcherdir
.
start_component
(
"launcherw"
,
flags
=
8
+
256
,
keyfile
=
"pyw.exe"
)
launcherdir
.
add_file
(
"
%
s/pyw.exe"
%
PCBUILD
,
launcherdir
.
add_file
(
launcherw
,
version
=
installer
.
FileVersion
(
launcherw
,
0
),
language
=
installer
.
FileVersion
(
launcherw
,
1
))
...
...
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