Description
.NET is going to support a new architecture (dotnet/runtime#52909), we should do so as well.
namespace System.Runtime.InteropServices
{
public enum Architecture
{
X86,
X64,
Arm,
Arm64,
Wasm,
+ S390x,
}
}
More details: dotnet/runtime#52906
@uweigand some context: BenchmarkDotNet is the most popular microbenchmark harness in the .NET ecosystem. We already support x64, x86, ARM64, and ARM and would love to support S390x
as well. When can we expect that the new architecture will be fully supported by .NET SDK and MSBuild?