summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-05-19 22:48:42 (GMT)
committerGitHub <noreply@github.com>2022-05-19 22:48:42 (GMT)
commit49526080eb448b750396caf90081ff846e36a36d (patch)
tree890d5b9eee0ef2c6b4bfe13f06df23d1d18f3d6c /PCbuild
parentc146525844b716e73386205ee8bed9268cc73fc8 (diff)
downloadcpython-49526080eb448b750396caf90081ff846e36a36d.zip
cpython-49526080eb448b750396caf90081ff846e36a36d.tar.gz
cpython-49526080eb448b750396caf90081ff846e36a36d.tar.bz2
gh-92984: Explicitly disable incremental linking for Windows Release and PGO builds (GH-92985)
(cherry picked from commit 38feffa09c74d9a853745908b7813903bae33b96) Co-authored-by: David Machaj <46852402+dmachaj@users.noreply.github.com>
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/pyproject.props1
1 files changed, 1 insertions, 0 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props
index d492b71..5af68b2 100644
--- a/PCbuild/pyproject.props
+++ b/PCbuild/pyproject.props
@@ -18,6 +18,7 @@
<SupportSigning Condition="'$(SupportSigning)' == ''">true</SupportSigning>
<SupportSigning Condition="'$(Configuration)' == 'Debug'">false</SupportSigning>
<SupportSigning Condition="'$(ConfigurationType)' == 'StaticLibrary'">false</SupportSigning>
+ <LinkIncremental Condition="$(Configuration) != 'Debug'">false</LinkIncremental>
</PropertyGroup>
<PropertyGroup>