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
e7da2f83
Commit
e7da2f83
authored
Sep 11, 2016
by
Steve Dower
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make PGO use usual build directory on Windows.
parent
654a7bdf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
10 deletions
+1
-10
PCbuild/pyproject.props
PCbuild/pyproject.props
+0
-1
PCbuild/python.props
PCbuild/python.props
+0
-1
Tools/msi/buildrelease.bat
Tools/msi/buildrelease.bat
+1
-8
No files found.
PCbuild/pyproject.props
View file @
e7da2f83
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<OutDir
Condition=
"!HasTrailingSlash($(OutDir))"
>
$(OutDir)\
</OutDir>
<OutDir
Condition=
"!HasTrailingSlash($(OutDir))"
>
$(OutDir)\
</OutDir>
<Py_IntDir
Condition=
"'$(Py_IntDir)' == ''"
>
$(MSBuildThisFileDirectory)obj\
</Py_IntDir>
<Py_IntDir
Condition=
"'$(Py_IntDir)' == ''"
>
$(MSBuildThisFileDirectory)obj\
</Py_IntDir>
<IntDir>
$(Py_IntDir)\$(ArchName)_$(Configuration)\$(ProjectName)\
</IntDir>
<IntDir>
$(Py_IntDir)\$(ArchName)_$(Configuration)\$(ProjectName)\
</IntDir>
<IntDir
Condition=
"$(Configuration) == 'PGInstrument' or $(Configuration) == 'PGUpdate'"
>
$(Py_IntDir)\$(ArchName)_PGO\$(ProjectName)\
</IntDir>
<TargetName
Condition=
"'$(TargetName)' == ''"
>
$(ProjectName)
</TargetName>
<TargetName
Condition=
"'$(TargetName)' == ''"
>
$(ProjectName)
</TargetName>
<TargetName>
$(TargetName)$(PyDebugExt)
</TargetName>
<TargetName>
$(TargetName)$(PyDebugExt)
</TargetName>
<GenerateManifest>
false
</GenerateManifest>
<GenerateManifest>
false
</GenerateManifest>
...
...
PCbuild/python.props
View file @
e7da2f83
...
@@ -25,7 +25,6 @@
...
@@ -25,7 +25,6 @@
-->
-->
<ArchName
Condition=
"'$(ArchName)' == '' and $(Platform) == 'x64'"
>
amd64
</ArchName>
<ArchName
Condition=
"'$(ArchName)' == '' and $(Platform) == 'x64'"
>
amd64
</ArchName>
<ArchName
Condition=
"'$(ArchName)' == ''"
>
win32
</ArchName>
<ArchName
Condition=
"'$(ArchName)' == ''"
>
win32
</ArchName>
<ArchName
Condition=
"$(Configuration) == 'PGInstrument' or $(Configuration) == 'PGUpdate'"
>
$(ArchName)-pgo
</ArchName>
<!-- Root directory of the repository -->
<!-- Root directory of the repository -->
<PySourcePath
Condition=
"'$(PySourcePath)' == ''"
>
$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)\..\))
</PySourcePath>
<PySourcePath
Condition=
"'$(PySourcePath)' == ''"
>
$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)\..\))
</PySourcePath>
...
...
Tools/msi/buildrelease.bat
View file @
e7da2f83
...
@@ -111,16 +111,10 @@ if "%1" EQU "x86" (
...
@@ -111,16 +111,10 @@ if "%1" EQU "x86" (
set
BUILD_PLAT
=
Win32
set
BUILD_PLAT
=
Win32
set
OUTDIR_PLAT
=
win32
set
OUTDIR_PLAT
=
win32
set
OBJDIR_PLAT
=
x86
set
OBJDIR_PLAT
=
x86
)
else
if
"
%
~2"
NEQ
""
(
call
"
%PCBUILD%
env.bat"
amd64
set
PGO
=
%
~
2
set
BUILD
=
%PCBUILD%
amd64
-pgo
\
set
BUILD_PLAT
=
x64
set
OUTDIR_PLAT
=
amd64
set
OBJDIR_PLAT
=
x64
)
else
(
)
else
(
call
"
%PCBUILD%
env.bat"
amd64
call
"
%PCBUILD%
env.bat"
amd64
set
BUILD
=
%PCBUILD%
amd64
\
set
BUILD
=
%PCBUILD%
amd64
\
set
PGO
=
%
~
2
set
BUILD_PLAT
=
x64
set
BUILD_PLAT
=
x64
set
OUTDIR_PLAT
=
amd64
set
OUTDIR_PLAT
=
amd64
set
OBJDIR_PLAT
=
x64
set
OBJDIR_PLAT
=
x64
...
@@ -177,7 +171,6 @@ if not "%SKIPBUILD%" EQU "1" (
...
@@ -177,7 +171,6 @@ if not "%SKIPBUILD%" EQU "1" (
)
)
set
BUILDOPTS
=
/p
:Platform
=
%
1
/p
:BuildForRelease
=
true
/p
:DownloadUrl
=
%DOWNLOAD_URL%
/p
:DownloadUrlBase
=
%DOWNLOAD_URL_BASE%
/p
:ReleaseUri
=
%RELEASE_URI%
set
BUILDOPTS
=
/p
:Platform
=
%
1
/p
:BuildForRelease
=
true
/p
:DownloadUrl
=
%DOWNLOAD_URL%
/p
:DownloadUrlBase
=
%DOWNLOAD_URL_BASE%
/p
:ReleaseUri
=
%RELEASE_URI%
if
"
%PGO%
"
NEQ
""
set
BUILDOPTS
=
%BUILDOPTS%
/p
:PGOBuildPath
=
%BUILD%
msbuild
"
%D%
bundle\releaselocal.wixproj"
/t
:Rebuild
%BUILDOPTS%
%CERTOPTS%
/p
:RebuildAll
=
true
msbuild
"
%D%
bundle\releaselocal.wixproj"
/t
:Rebuild
%BUILDOPTS%
%CERTOPTS%
/p
:RebuildAll
=
true
if
errorlevel
1
exit
/B
if
errorlevel
1
exit
/B
msbuild
"
%D%
bundle\releaseweb.wixproj"
/t
:Rebuild
%BUILDOPTS%
%CERTOPTS%
/p
:RebuildAll
=
false
msbuild
"
%D%
bundle\releaseweb.wixproj"
/t
:Rebuild
%BUILDOPTS%
%CERTOPTS%
/p
:RebuildAll
=
false
...
...
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