We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09f87ee commit 51e8a8dCopy full SHA for 51e8a8d
1 file changed
find_java_libdir.sh
@@ -35,6 +35,8 @@ main () {
35
lib_dir="${jre_dir}/server"
36
elif [[ "${os}" == "linux" && "${target_arch}" == "arm" ]]; then
37
if [[ -d ${jre_dir}/arm/classic ]]; then lib_dir="${jre_dir}"/arm/classic; else lib_dir="${jre_dir}"/arm/server; fi
38
+ elif [[ "${os}" == "linux" && "${target_arch}" == "arm64" ]]; then
39
+ if [[ -d ${jre_dir}/aarch64/classic ]]; then lib_dir="${jre_dir}"/aarch64/classic; else lib_dir="${jre_dir}"/aarch64/server; fi
40
elif [[ "${os}" == "linux" && "${target_arch}" == "ia32" ]]; then
41
if [[ -d ${jre_dir}/i386/classic ]]; then lib_dir="${jre_dir}"/i386/classic; else lib_dir="${jre_dir}"/i386/server; fi
42
elif [[ "${os}" == "linux" && "${target_arch}" == "x64" ]]; then
0 commit comments