diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-05-19 22:48:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 22:48:42 (GMT) |
commit | 49526080eb448b750396caf90081ff846e36a36d (patch) | |
tree | 890d5b9eee0ef2c6b4bfe13f06df23d1d18f3d6c /PCbuild | |
parent | c146525844b716e73386205ee8bed9268cc73fc8 (diff) | |
download | cpython-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.props | 1 |
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> |