Skip to content

Commit

Permalink
Implement MIPS64 RID (#42194)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangzhai authored Sep 14, 2020
1 parent 786548f commit cfb2ea4
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2758,6 +2758,14 @@
"any",
"base"
],
"linux-mips64": [
"linux-mips64",
"linux",
"unix-mips64",
"unix",
"any",
"base"
],
"linux-musl": [
"linux-musl",
"linux",
Expand Down Expand Up @@ -6408,6 +6416,12 @@
"any",
"base"
],
"unix-mips64": [
"unix-mips64",
"unix",
"any",
"base"
],
"unix-x64": [
"unix-x64",
"unix",
Expand Down
11 changes: 11 additions & 0 deletions src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.json
Original file line number Diff line number Diff line change
Expand Up @@ -1195,6 +1195,12 @@
"unix-armel"
]
},
"linux-mips64": {
"#import": [
"linux",
"unix-mips64"
]
},
"linux-musl": {
"#import": [
"linux"
Expand Down Expand Up @@ -2783,6 +2789,11 @@
"unix"
]
},
"unix-mips64": {
"#import": [
"unix"
]
},
"unix-x64": {
"#import": [
"unix"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<ItemGroup>
<RuntimeGroup Include="unix">
<Parent>any</Parent>
<Architectures>x64;x86;arm;armel;arm64</Architectures>
<Architectures>x64;x86;arm;armel;arm64;mips64</Architectures>
</RuntimeGroup>
<RuntimeGroup Include="linux">
<Parent>unix</Parent>
<Architectures>x64;x86;arm;armel;arm64</Architectures>
<Architectures>x64;x86;arm;armel;arm64;mips64</Architectures>
</RuntimeGroup>
<RuntimeGroup Include="linux-musl">
<Parent>linux</Parent>
Expand Down

0 comments on commit cfb2ea4

Please sign in to comment.