Fork me on GitHub
#graalvm
<
2022-10-13
>
valerauko23:10:26

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

borkdude05:10:16

Class/forName works

valerauko05:10:06

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