We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e68724e commit 4b0731eCopy full SHA for 4b0731e
1 file changed
.github/scripts/java_setup.sh
@@ -44,8 +44,10 @@ function prepareJdk() {
44
exit 1
45
fi
46
curl -L --fail "${URL}" | sudo tar -xvzf - -C ${target_path} --strip-components 1
47
- # rename the bundled libstdc++.so to avoid conflicts with the system one
48
- sudo mv ${target_path}/etc/libc++/libstdc++.so.6 ${target_path}/etc/libc++/libstdc++.so.6.bak
+ if [[ "${arch}" != "aarch64" ]]; then
+ # rename the bundled libstdc++.so to avoid conflicts with the system one
49
+ sudo mv ${target_path}/etc/libc++/libstdc++.so.6 ${target_path}/etc/libc++/libstdc++.so.6.bak
50
+ fi
51
return
52
53
0 commit comments