Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e5c2fe68
Commit
e5c2fe68
authored
Aug 24, 2012
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pick up 32-bit launcher from PGO directory on 64-bit PGO build.
parent
f863fc3e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
Misc/NEWS
Misc/NEWS
+2
-0
Tools/msi/msi.py
Tools/msi/msi.py
+7
-4
No files found.
Misc/NEWS
View file @
e5c2fe68
...
...
@@ -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
View file @
e5c2fe68
...
...
@@ -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