Fork me on GitHub
#graalvm
<
2020-03-08
>
borkdude17:03:29

podcast about GraalVM with its creator Thomas Wuerthinger: http://airhacks.fm/#episode_78 the previous episode (#77) is more about Thomas' youth, not that much about GraalVM, but it was also nice to listen to

👍 4
Aaron Cummings17:03:26

Finally managed to find where my complexity was blowing up - (resolve) makes native-image go 📈

borkdude17:03:06

@aaron383 Yep, sounds familiar. I usually scan code for resolve in case of problems

borkdude17:03:25

in fact, getting rid of resolve was the only way to get hato running for example: https://github.com/borkdude/hato-native/commit/84acf2469074cc9a48b2fa5a9c4d0018784eb73a

Aaron Cummings17:03:01

I have some cases where I pass around the name of a namespace as a string - sort of an ad-hoc polymorphism. The resolve is to a symbol within that namespace. I should find a better way to do this; maybe a map as a registry of these things will do.

Aaron Cummings17:03:19

Yeah, I have something a bit like that hato patch.