Skip to content

[API Proposal]: Add architecture PPC64le to Architecture enum #67428

@Sapana-Khemkar

Description

@Sapana-Khemkar

Background and motivation

All architectures, whether officially Microsoft supported or not, need to exist within the System.Runtime.InteropServices.Architecture enum. We want to introduce a new community-supported architecture ppc64le.
The implementation PR is #68809

API Proposal

namespace System.Runtime.InteropServices
{
    public enum Architecture
    {
        X86 = 0,
        X64 = 1,
        Arm = 2,
        Arm64 = 3,
        Wasm = 4,
        S390x = 5,
        LoongArch64 = 6,
        Armv6 = 7,
+       PPC64le = 8,
    }
}

API Usage

 case Architecture.PPC64le:
    Assert.Equal(Architecture.PPC64le, processArch);
    break;

Alternative Designs

No response

Risks

No response

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions