diff options
author | Sakura286 <sakura286@outlook.com> | 2022-07-26 02:18:23 +0000 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-11-10 13:47:06 +0100 |
commit | bc9487f745befde6534fd46058e119256952323d (patch) | |
tree | 10b4ac8fd4be55ff19da95d39a51da7e753b6cd6 /jvmfwk | |
parent | 7ac572437ac972ef37aed8003f5a476f49b27b89 (diff) |
Add riscv64 support
1. Configure gbuild
2. Add UNO Bridge for riscv64
Till now base function works well on riscv64. The bridgetest has passed.
Test on Debian, Gentoo and openEuler.
Credits:
- Heiher <r@hev.cc> and Stephan Bergmann <sbergman@redhat.com>
The riscv64 bridge implementation refers to mips64 and
AArch64 bridges.
- Bo Yu <tsu.yubo@gmail.com> configures gbuild for riscv64.
- WANG Xuerui <xen0n@gentoo.org> provides lots of guiding tips.
Change-Id: Ifad3b0de8b2c9e7328627ed03396bbd45a9c71e4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137445
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Jenkins
Diffstat (limited to 'jvmfwk')
-rw-r--r-- | jvmfwk/inc/vendorbase.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/jvmfwk/inc/vendorbase.hxx b/jvmfwk/inc/vendorbase.hxx index 2bbf656c6e32..5c13ee7a5f94 100644 --- a/jvmfwk/inc/vendorbase.hxx +++ b/jvmfwk/inc/vendorbase.hxx @@ -59,6 +59,8 @@ OpenJDK at least, but probably not true for Lemotes JDK */ #else #define JFW_PLUGIN_ARCH "mips64el" #endif +#elif defined RISCV64 +#define JFW_PLUGIN_ARCH "riscv64" #elif defined S390X #define JFW_PLUGIN_ARCH "s390x" #elif defined S390 |