Adding support for new arches
Some checks failed
Running Code Coverage / build (20.x) (push) Failing after 18s

Adding support for new architectures such as:
- 64-bit LoongArch
- 64-bit RISC-V

Signed-off-by: Alexander Burmatov <thatman@altlinux.org>
This commit is contained in:
Alexander Burmatov 2024-11-05 14:34:10 +03:00
parent 6cadd7feac
commit 9b71b933f3

View File

@ -66,6 +66,16 @@ const archFilters = [
label: 'amd64',
value: 'amd64',
tooltip: '64-bit x86'
},
{
label: 'loong64',
value: 'loong64',
tooltip: '64-bit LoongArch'
},
{
label: 'riscv64',
value: 'riscv64',
tooltip: '64-bit RISC-V'
}
];