Add linux-arm native AOT support (#18703)

Co-authored-by: Alexander Köplinger <alex.koeplinger@outlook.com>
This commit is contained in:
Michal Strehovský 2024-02-17 02:01:19 +09:00 committed by GitHub
parent 24d45ecb53
commit ca9ed190d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -362,8 +362,6 @@
win-x64;
" />
<!-- The subset of ILCompiler target RIDs that are officially supported. Should be a subset of
https://github.com/dotnet/runtime/blob/main/src/installer/pkg/projects/Microsoft.DotNet.ILCompiler/ILCompilerRIDs.props -->
<Net80ILCompilerSupportedRids Include="
@(Net70ILCompilerSupportedRids);
osx-x64;
@ -372,7 +370,15 @@
freebsd-arm64;
" />
<ILCompilerSupportedRids Include="@(Net80ILCompilerSupportedRids)" />
<Net90ILCompilerSupportedRids Include="
@(Net80ILCompilerSupportedRids);
linux-arm;
linux-musl-arm;
" />
<!-- The subset of ILCompiler target RIDs that are officially supported. Should be a subset of
https://github.com/dotnet/runtime/blob/main/src/installer/pkg/projects/Microsoft.DotNet.ILCompiler/ILCompilerRIDs.props -->
<ILCompilerSupportedRids Include="@(Net90ILCompilerSupportedRids)" />
<Net80NativeAOTRuntimePackRids Include="
ios-arm64;
@ -395,8 +401,10 @@
<Net90NativeAOTRuntimePackRids Include="
@(Net80NativeAOTRuntimePackRids);
linux-x64;
linux-arm;
linux-arm64;
linux-musl-x64;
linux-musl-arm;
linux-musl-arm64;
win-x64;
win-arm64;