graalvm

valerauko 2022-10-13T23:37:26.144719Z

what's the graal native compatible way to check if a class exists at runtime? such as in a clojure library that can use platform-specific java libs (specifier linux-x86_64 for example), but obviously only use them if they are present and relevant

borkdude 2022-10-14T05:14:16.914349Z

Class/forName works

valerauko 2022-10-14T05:19:06.440829Z

awesome, i'll give that a try. thanks!