From cfb2ea425985dc418edce689cfe3617943787776 Mon Sep 17 00:00:00 2001 From: Leslie Zhai Date: Tue, 15 Sep 2020 00:05:22 +0800 Subject: [PATCH] Implement MIPS64 RID (#42194) https://github.com/gsvm/loongson-dotnet/issues/6 --- .../Microsoft.NETCore.Platforms/runtime.compatibility.json | 14 ++++++++++++++ src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.json | 11 +++++++++++ .../pkg/Microsoft.NETCore.Platforms/runtimeGroups.props | 4 ++-- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.compatibility.json b/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.compatibility.json index aebdd38..5a3761b 100644 --- a/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.compatibility.json +++ b/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.compatibility.json @@ -2758,6 +2758,14 @@ "any", "base" ], + "linux-mips64": [ + "linux-mips64", + "linux", + "unix-mips64", + "unix", + "any", + "base" + ], "linux-musl": [ "linux-musl", "linux", @@ -6408,6 +6416,12 @@ "any", "base" ], + "unix-mips64": [ + "unix-mips64", + "unix", + "any", + "base" + ], "unix-x64": [ "unix-x64", "unix", diff --git a/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.json b/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.json index 0520517..c133c8f 100644 --- a/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.json +++ b/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.json @@ -1195,6 +1195,12 @@ "unix-armel" ] }, + "linux-mips64": { + "#import": [ + "linux", + "unix-mips64" + ] + }, "linux-musl": { "#import": [ "linux" @@ -2783,6 +2789,11 @@ "unix" ] }, + "unix-mips64": { + "#import": [ + "unix" + ] + }, "unix-x64": { "#import": [ "unix" diff --git a/src/libraries/pkg/Microsoft.NETCore.Platforms/runtimeGroups.props b/src/libraries/pkg/Microsoft.NETCore.Platforms/runtimeGroups.props index eae3576..b9aa9fb 100644 --- a/src/libraries/pkg/Microsoft.NETCore.Platforms/runtimeGroups.props +++ b/src/libraries/pkg/Microsoft.NETCore.Platforms/runtimeGroups.props @@ -2,11 +2,11 @@ any - x64;x86;arm;armel;arm64 + x64;x86;arm;armel;arm64;mips64 unix - x64;x86;arm;armel;arm64 + x64;x86;arm;armel;arm64;mips64 linux -- 2.7.4