Linux: Drop ppc32 (32-bit PowerPC) architecture support

This was added together with `ppc64le` in #54490, but seemingly only for the
purpose of getting it to compile on a Linux distro that aims at maximizing
support for all CPU architectures.

I don't think anyone has ever _run_ Godot on a `ppc32` system (do those even
support OpenGL ES 3.0?) and so I don't think we should aim to support it.

Debian dropped support for its PowerPC (`ppc32`) arch in Debian 9, released
in 2017.
This commit is contained in:
Rémi Verschelde 2025-05-14 10:08:06 +02:00
parent 09fcbb8645
commit 1de9789806
No known key found for this signature in database
GPG key ID: C3336907360768E1
10 changed files with 9 additions and 32 deletions

View file

@ -73,7 +73,7 @@ def get_flags():
def configure(env: "SConsEnvironment"):
# Validate arch.
supported_arches = ["x86_32", "x86_64", "arm32", "arm64", "rv64", "ppc32", "ppc64", "loongarch64"]
supported_arches = ["x86_32", "x86_64", "arm32", "arm64", "rv64", "ppc64", "loongarch64"]
validate_arch(env["arch"], get_name(), supported_arches)
## Build type