Skip to content

Commit

Permalink
Fix coreclr release build on windows to not use unknown switch (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
safern authored Nov 19, 2019
1 parent 317debc commit 4f58e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/coreclr.proj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<_CoreClrBuildArg Include="-$(Configuration.ToLower())" />
<_CoreClrBuildArg Condition="'$(ContinuousIntegrationBuild)' == 'true'" Include="-ci" />
<_CoreClrBuildArg Condition="$([MSBuild]::IsOsPlatform(Windows)) and ('$(Platform)' == 'x86' or '$(Platform)' == 'x64') and '$(Configuration)' == 'Release'" Include="-enforcepgo" />
<_CoreClrBuildArg Condition="'$(Configuration)' == 'Release'" Include="-stripsymbols" />
<_CoreClrBuildArg Condition="!$([MSBuild]::IsOsPlatform(Windows)) and '$(Configuration)' == 'Release'" Include="-stripsymbols" />
<_CoreClrBuildArg Condition="'$(OfficialBuildId)' == ''" Include="-officialbuildid=$(OfficialBuildId)" />
</ItemGroup>

Expand Down

0 comments on commit 4f58e47

Please sign in to comment.