graalvm

Discuss GraalVM related topics. Use clojure 1.10.2 or newer for all new projects. Contribute to https://github.com/clj-easy/graal-docs and https://github.com/BrunoBonacci/graalvm-clojure. GraalVM slack: https://www.graalvm.org/slack-invitation/.
gklijs 2020-04-30T09:11:22.212700Z

Does it really needs to be a String? String's have some weird things, I think a char array would be simpler?

borkdude 2020-04-30T09:18:14.212900Z

I'm now trying a Char pointer: https://github.com/borkdude/babashka/issues/397

2020-04-30T09:40:12.214300Z

Can graalvm compile to iOS? Maybe someone has experience?

borkdude 2020-04-30T09:41:30.214500Z

There is an issue about it here with a comment that someone made it work somehow: https://github.com/oracle/graal/issues/373#issuecomment-563435260

2020-04-30T09:46:22.214900Z

Thank you

2020-04-30T09:58:44.217100Z

Also, I know graalvm could build libraries from Java, and methods should use special annotations @CEntryPoint , how to do something like this in Clojure?

borkdude 2020-04-30T10:07:19.217700Z

@romantsopin I have an example here of how to build a native library from sci (a Clojure interpreter): https://github.com/borkdude/sci/blob/master/doc/libsci.md

1👍