From 5a9533d95e1b74c4f6a6893e0111659308052edf Mon Sep 17 00:00:00 2001 From: Alexander Burmatov <78866365+Future998@users.noreply.github.com> Date: Fri, 15 Nov 2024 11:30:47 +0400 Subject: [PATCH] Adding support for new arches (#449) Adding support for new architectures such as: - 64-bit LoongArch - 64-bit RISC-V Signed-off-by: Alexander Burmatov --- src/utilities/filterConstants.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/utilities/filterConstants.js b/src/utilities/filterConstants.js index 25d0501e..c9c8c373 100644 --- a/src/utilities/filterConstants.js +++ b/src/utilities/filterConstants.js @@ -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' } ];