This is an automated email from the ASF dual-hosted git repository. jimjag pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/openoffice.git
commit e278cb3926a29fb9a38f15711fbfdef43c02602f Author: Jim Jagielski <[email protected]> AuthorDate: Wed Jul 1 14:29:42 2026 -0400 jvmfwk: recognize AARCH64 in JFW_PLUGIN_ARCH platform detection for Mac Silicon --- main/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx b/main/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx index 1b71699885..86ebdb8266 100644 --- a/main/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx +++ b/main/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx @@ -57,6 +57,8 @@ namespace jfw_plugin #define JFW_PLUGIN_ARCH "s390x" #elif defined S390 #define JFW_PLUGIN_ARCH "s390" +#elif defined AARCH64 +#define JFW_PLUGIN_ARCH "aarch64" #elif defined ARM #define JFW_PLUGIN_ARCH "arm" #elif defined IA64
