summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorRene Engelhard <rene@debian.org>2023-07-11 16:56:02 +0200
committerStephan Bergmann <sbergman@redhat.com>2023-07-12 08:22:54 +0200
commit39ef35d69d1c4c5d6a3964997acb1c53c9501c58 (patch)
tree67f29a0a2c4e4597193675041bd488420e00396e /desktop
parent2529a44931a2646af6f8beeecd18abb710c6d2e5 (diff)
add linux_riscv64 and linux_loongarch64 to dp_platform.cxx
forgotten in bc9487f745befde6534fd46058e119256952323d and d3625d968901eb93a9680db8d1165f70de3fd64e Change-Id: I7f33c1db54b8f66e797a29cd1ccf96d19a88cc60 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154333 Tested-by: Jenkins Reviewed-by: René Engelhard <rene@debian.org> (cherry picked from commit 5d70ee0b3fd53438eb8a8d92ce49e9f9a4926dfb) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154316 Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/deployment/misc/dp_platform.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/desktop/source/deployment/misc/dp_platform.cxx b/desktop/source/deployment/misc/dp_platform.cxx
index ad1b5ea13fed..b2af59f9b926 100644
--- a/desktop/source/deployment/misc/dp_platform.cxx
+++ b/desktop/source/deployment/misc/dp_platform.cxx
@@ -126,6 +126,10 @@ namespace
ret = checkOSandCPU(u"Linux", u"ALPHA");
else if (token == u"linux_aarch64")
ret = checkOSandCPU(u"Linux", u"AARCH64");
+ else if (token == u"linux_riscv64")
+ ret = checkOSandCPU(u"Linux", u"RISCV64");
+ else if (token == u"linux_loongarch64")
+ ret = checkOSandCPU(u"Linux", u"LOONGARCH64");
else if (token == u"freebsd_x86")
ret = checkOSandCPU(u"FreeBSD", u"x86");
else if (token == u"freebsd_x86_64")