diff options
author | Remi Collet <remi@remirepo.net> | 2023-05-17 07:54:07 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2023-05-17 07:54:07 +0200 |
commit | 5df11693cb1ccc50efc5b2d2ba0125a09ff6b299 (patch) | |
tree | 4d0b40ba67fdf53f55245d7bbad4806a8f9ab613 | |
parent | 8c7c3d3b6a3d871c07a0a0142334adf407624c8c (diff) |
more unsupported arches
-rw-r--r-- | wizard/index.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/wizard/index.php b/wizard/index.php index 2c4a3138..17cb49d3 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -78,8 +78,10 @@ $types = [ 'scl' => 'Multiple versions simultaneously', ]; $arches = [ - 'x86_64' => 'x86_64', + 'x86_64' => 'x86_64', 'aarch64' => 'aarch64', + 'ppc64le' => 'ppc64le', + 's390x' => 's390x', ]; $phpvers = [ // use false when only SCL @@ -229,7 +231,11 @@ if ($php && $os) { } } -if ($arch=='aarch64') { +if ($arch == 'ppc64le' || $arch == 's390x') { + printf("<li><b>$arch</b> is not planed for now</li><br />"); + $err =true; + +} else if ($arch == 'aarch64') { // printf("<li><b>aarch64</b> support is a work in progress, some packages are not yet available, see <a href='%s'>issue #214</a></li><br />", // 'https://github.com/remicollet/remirepo/issues/214'); |