-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Identify riscv64 as valid arch #37994
Conversation
This and dotnet/installer#18247 are enabler PRs to resolve chicken-egg for R2R-on-new-arch. The results would be observed when these are picked up by the runtime via SDK update and dotnet/runtime#96941 is reexamined with cross-build. If these look harmless, please merge. Thanks! :) |
src/Containers/Microsoft.NET.Build.Containers/Registry/Registry.cs
Outdated
Show resolved
Hide resolved
src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.RuntimeIdentifierInference.targets
Outdated
Show resolved
Hide resolved
…y.cs Co-authored-by: Alexander Köplinger <alex.koeplinger@outlook.com>
@akoeplinger, does this looks good for merging? |
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.
LGTM with one comment
@@ -82,6 +82,9 @@ Copyright (c) .NET Foundation. All rights reserved. | |||
<PropertyGroup Condition=" '$(_PlatformWithoutConfigurationInference)' == 'arm64' "> | |||
<PlatformTarget Condition=" '$(PlatformTarget)' == '' ">arm64</PlatformTarget> | |||
</PropertyGroup> | |||
<PropertyGroup Condition=" '$(_PlatformWithoutConfigurationInference)' == 'riscv64' "> | |||
<PlatformTarget Condition=" '$(PlatformTarget)' == '' ">riscv64</PlatformTarget> | |||
</PropertyGroup> |
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.
I'd remove the PlatformTarget here too.
This is to enable riscv64's R2R bring-up in SDK.