-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add linux-riscv64 in ILCompilerSupportedRids #45852
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -387,7 +387,11 @@ | |
|
|
||
| <!-- 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)" /> | ||
| <ILCompilerSupportedRids Include=" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All other lists have a version number. Should this one have a version number as well?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is fine. we need one item that represents the "current" list, this is that.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should other community supported architectures be moved to the "current" list?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Next version properties are added around preview 1 I think. Currently, net10 is using version less properties.
It is the inheritance chain. For each component, the RID is listed once under the .NET version where its support was enabled. The next version property just inherits the previous one. LoongArch was handled last year https://github.com/dotnet/installer/pull/19469/files.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we add the next version properties when we do branching, i.e. for net11 |
||
| @(Net90ILCompilerSupportedRids); | ||
| linux-riscv64; | ||
| linux-musl-riscv64; | ||
| " /> | ||
|
|
||
| <Net80NativeAOTRuntimePackRids Include=" | ||
| ios-arm64; | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment says that this list should be a subset of ILCompilerRIDs.props, but it is not the case. Does the comment or ILCompilerRIDs.props need updating?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes it's not strictly a subset. We include the official RIDs then the current OutputRID, which covers a set that is not a superset of all the allowed RIDs. I will update the comment.