mirror of https://github.com/python/cpython.git
gh-92984: Explicitly disable incremental linking for Windows Release and PGO builds (GH-92985)
(cherry picked from commit 38feffa09c
)
Co-authored-by: David Machaj <46852402+dmachaj@users.noreply.github.com>
This commit is contained in:
parent
4eb2f40756
commit
76fe10a89a
|
@ -0,0 +1 @@
|
|||
Explicitly disable incremental linking for non-Debug builds
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue