You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ck detect soft:compiler.java may not set JAVA_HOME properly. It searches for javac and may find a symlink /usr/lib/javac. If this option is chosen, JAVA_HOME is set to /usr. In fact, it should be set to something like /usr/lib/jvm/java-8-openjdk-amd64.
One way to fix it is to search for rt.jar instead of javac. It's not symlinked anywhere.
But, I guess, the best way would be to add symlink detection/resolution, so that symlinks are not considered at all.
The text was updated successfully, but these errors were encountered:
Hi,
ck detect soft:compiler.java
may not setJAVA_HOME
properly. It searches forjavac
and may find a symlink/usr/lib/javac
. If this option is chosen,JAVA_HOME
is set to/usr
. In fact, it should be set to something like/usr/lib/jvm/java-8-openjdk-amd64
.One way to fix it is to search for
rt.jar
instead ofjavac
. It's not symlinked anywhere.But, I guess, the best way would be to add symlink detection/resolution, so that symlinks are not considered at all.
The text was updated successfully, but these errors were encountered: