Skip to content

Commit

Permalink
Disable VxSort for Unix NativeAot
Browse files Browse the repository at this point in the history
  • Loading branch information
cshung committed Mar 10, 2024
1 parent 326c7a2 commit 786e0aa
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ The .NET Foundation licenses this file to you under the MIT license.

<LinkStandardCPlusPlusLibrary Condition="'$(LinkStandardCPlusPlusLibrary)' == '' and '$(_IsiOSLikePlatform)' == 'true' and '$(InvariantGlobalization)' != 'true'">true</LinkStandardCPlusPlusLibrary>
<VxSortSupportName>libRuntime.VxsortEnabled</VxSortSupportName>
<VxSortSupportName Condition="'$(OptimizationPreference)' == 'Size' or '$(IlcDisableVxsort)' == 'true'">libRuntime.VxsortDisabled</VxSortSupportName>
<!-- TODO, testing only, should use the same policy as Windows -->
<VxSortSupportName Condition="'$(OptimizationPreference)' == 'Size' or '$(IlcDisableVxsort)' == 'true' or 'true' == 'true'">libRuntime.VxsortDisabled</VxSortSupportName>
<StandaloneGCSupportName>libstandalonegc-disabled</StandaloneGCSupportName>
<StandaloneGCSupportName Condition="'$(IlcStandaloneGCSupport)' == 'true'">libstandalonegc-enabled</StandaloneGCSupportName>
</PropertyGroup>
Expand Down

0 comments on commit 786e0aa

Please sign in to comment.