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 /m4 | |
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 'm4')
-rw-r--r-- | m4/ax_boost_base.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/ax_boost_base.m4 b/m4/ax_boost_base.m4 index 94909a52fe49..e605311c850e 100644 --- a/m4/ax_boost_base.m4 +++ b/m4/ax_boost_base.m4 @@ -91,7 +91,7 @@ if test "x$want_boost" = "xyes"; then dnl are found, e.g. when only header-only libraries are installed! libsubdirs="lib" ax_arch=`uname -m` - if test $ax_arch = x86_64 -o $ax_arch = ppc64 -o $ax_arch = ppc64le -o $ax_arch = s390x -o $ax_arch = sparc64 -o $ax_arch = aarch64; then + if test $ax_arch = x86_64 -o $ax_arch = ppc64 -o $ax_arch = ppc64le -o $ax_arch = s390x -o $ax_arch = sparc64 -o $ax_arch = aarch64 -o $ax_arch = riscv64; then libsubdirs="lib64 lib lib64" fi |