-
Notifications
You must be signed in to change notification settings - Fork 341
Add support for ppc64le processor architecture #4028
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 1 commit
96591cb
750b193
4d97db8
389b923
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 |
|---|---|---|
|
|
@@ -11,5 +11,6 @@ public enum Architecture | |
| ARM, | ||
| AnyCPU, | ||
| ARM64, | ||
| S390x | ||
| S390x, | ||
| PPC64le | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,4 +13,5 @@ public enum PlatformArchitecture | |
| ARM, | ||
| ARM64, | ||
| S390x, | ||
| PPC64le, | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,6 +28,7 @@ public PlatformArchitecture Architecture | |
| // preview 6 or later, so use the numerical value for now. | ||
| // case System.Runtime.InteropServices.Architecture.S390x: | ||
| (Architecture)5 => PlatformArchitecture.S390x, | ||
| (Architecture)6 => PlatformArchitecture.PPC64le, | ||
|
||
| _ => throw new NotSupportedException(), | ||
| }; | ||
| } | ||
|
|
||
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.
Maybe name this
Ppc64leto keep it consistent with dotnet/runtime?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.
Agree. Will change