summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-09-12 03:19:35 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2016-09-12 03:19:35 (GMT)
commite7da2f8380fbd92d5978e9fb8ce317ecfd17d12e (patch)
tree5f9b63b4a8cd8bb41c222c81f93235918d0a8fee /PCbuild
parent654a7bdf572aa1732d31b12c1c814ead0321027b (diff)
downloadcpython-e7da2f8380fbd92d5978e9fb8ce317ecfd17d12e.zip
cpython-e7da2f8380fbd92d5978e9fb8ce317ecfd17d12e.tar.gz
cpython-e7da2f8380fbd92d5978e9fb8ce317ecfd17d12e.tar.bz2
Make PGO use usual build directory on Windows.
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/pyproject.props1
-rw-r--r--PCbuild/python.props1
2 files changed, 0 insertions, 2 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props
index d1ac998..543b4ca 100644
--- a/PCbuild/pyproject.props
+++ b/PCbuild/pyproject.props
@@ -7,7 +7,6 @@
<OutDir Condition="!HasTrailingSlash($(OutDir))">$(OutDir)\</OutDir>
<Py_IntDir Condition="'$(Py_IntDir)' == ''">$(MSBuildThisFileDirectory)obj\</Py_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>$(TargetName)$(PyDebugExt)</TargetName>
<GenerateManifest>false</GenerateManifest>
diff --git a/PCbuild/python.props b/PCbuild/python.props
index 0150098..2b9b903 100644
--- a/PCbuild/python.props
+++ b/PCbuild/python.props
@@ -25,7 +25,6 @@
-->
<ArchName Condition="'$(ArchName)' == '' and $(Platform) == 'x64'">amd64</ArchName>
<ArchName Condition="'$(ArchName)' == ''">win32</ArchName>
- <ArchName Condition="$(Configuration) == 'PGInstrument' or $(Configuration) == 'PGUpdate'">$(ArchName)-pgo</ArchName>
<!-- Root directory of the repository -->
<PySourcePath Condition="'$(PySourcePath)' == ''">$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)\..\))</PySourcePath>