Add linux-arm native AOT support (#18703)
Co-authored-by: Alexander Köplinger <alex.koeplinger@outlook.com>
This commit is contained in:
parent
24d45ecb53
commit
ca9ed190d4
1 changed files with 11 additions and 3 deletions
|
@ -362,8 +362,6 @@
|
||||||
win-x64;
|
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="
|
<Net80ILCompilerSupportedRids Include="
|
||||||
@(Net70ILCompilerSupportedRids);
|
@(Net70ILCompilerSupportedRids);
|
||||||
osx-x64;
|
osx-x64;
|
||||||
|
@ -372,7 +370,15 @@
|
||||||
freebsd-arm64;
|
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="
|
<Net80NativeAOTRuntimePackRids Include="
|
||||||
ios-arm64;
|
ios-arm64;
|
||||||
|
@ -395,8 +401,10 @@
|
||||||
<Net90NativeAOTRuntimePackRids Include="
|
<Net90NativeAOTRuntimePackRids Include="
|
||||||
@(Net80NativeAOTRuntimePackRids);
|
@(Net80NativeAOTRuntimePackRids);
|
||||||
linux-x64;
|
linux-x64;
|
||||||
|
linux-arm;
|
||||||
linux-arm64;
|
linux-arm64;
|
||||||
linux-musl-x64;
|
linux-musl-x64;
|
||||||
|
linux-musl-arm;
|
||||||
linux-musl-arm64;
|
linux-musl-arm64;
|
||||||
win-x64;
|
win-x64;
|
||||||
win-arm64;
|
win-arm64;
|
||||||
|
|
Loading…
Reference in a new issue