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
viktor can currently be assembled only with JDK 9 or earlier. That is because the JNI headers are generated using javah, which was removed in JDK 10. The headers are now supposed to be generated using javac -h, but this works only for Java source files, which we don't have, since our sources are in Kotlin. This is not optimal, since JDK 8 is fairly old.
viktor
can currently be assembled only with JDK 9 or earlier. That is because the JNI headers are generated usingjavah
, which was removed in JDK 10. The headers are now supposed to be generated usingjavac -h
, but this works only for Java source files, which we don't have, since our sources are in Kotlin. This is not optimal, since JDK 8 is fairly old.Possible workarounds:
javah
stand-in, like gjavah;javap
workaround;NativeSpeedups.kt
and parts ofLoader.kt
);The text was updated successfully, but these errors were encountered: