diff options
author | Rene Engelhard <rene@debian.org> | 2023-07-11 16:56:02 +0200 |
---|---|---|
committer | René Engelhard <rene@debian.org> | 2023-07-12 00:41:17 +0200 |
commit | 091eec9828c3cba728fb52924ad9a4103175e41f (patch) | |
tree | 16cf652751e4f35a414c326bf2e5fe57bb965d3f /desktop/source | |
parent | 25d50f08a27ee28698226a44db9c74a66a260754 (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>
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/deployment/misc/dp_platform.cxx | 4 |
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") |