github.com/opencontainers/runc@v1.2.0-rc.1.0.20240520010911-492dc558cdd6/docs/spec-conformance.md (about)

     1  # Spec conformance
     2  
     3  This branch of runc implements the [OCI Runtime Spec v1.2.0](https://github.com/opencontainers/runtime-spec/tree/v1.2.0)
     4  for the `linux` platform.
     5  
     6  The following features are not implemented yet:
     7  
     8  Spec version | Feature                                        | PR
     9  -------------|------------------------------------------------|----------------------------------------------------------
    10  v1.1.0       | `SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV`       | [#3862](https://github.com/opencontainers/runc/pull/3862)
    11  
    12  ## Architectures
    13  
    14  The following architectures are supported:
    15  
    16  runc binary  | seccomp
    17  -------------|-------------------------------------------------------
    18  `amd64`      | `SCMP_ARCH_X86`, `SCMP_ARCH_X86_64`, `SCMP_ARCH_X32`
    19  `arm64`      | `SCMP_ARCH_ARM`, `SCMP_ARCH_AARCH64`
    20  `armel`      | `SCMP_ARCH_ARM`
    21  `armhf`      | `SCMP_ARCH_ARM`
    22  `ppc64le`    | `SCMP_ARCH_PPC64LE`
    23  `riscv64`    | `SCMP_ARCH_RISCV64`
    24  `s390x`      | `SCMP_ARCH_S390`, `SCMP_ARCH_S390X`
    25  
    26  The runc binary might be compilable for i386, big-endian PPC64,
    27  and several MIPS variants too, but these architectures are not officially supported.