Skip to content

Commit 38feffa

Browse files
authored
gh-92984: Explicitly disable incremental linking for Windows Release and PGO builds (GH-92985)
1 parent 403d16f commit 38feffa

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Explicitly disable incremental linking for non-Debug builds

PCbuild/pyproject.props

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<SupportSigning Condition="'$(SupportSigning)' == ''">true</SupportSigning>
1919
<SupportSigning Condition="'$(Configuration)' == 'Debug'">false</SupportSigning>
2020
<SupportSigning Condition="'$(ConfigurationType)' == 'StaticLibrary'">false</SupportSigning>
21+
<LinkIncremental Condition="$(Configuration) != 'Debug'">false</LinkIncremental>
2122
</PropertyGroup>
2223

2324
<PropertyGroup>

0 commit comments

Comments
 (0)