Roland Schatz
Roland Schatz
Hi Mike! > It's not clear to me if the "convert polyglot value to a struct" trick can handle function pointers inside the struct to emulate OO method calls. The...
> Having function pointers inside the struct currently doesn't work, but we definitely want to support that in the future. Actually, I was a bit too fast: I just tested...
With https://github.com/graalvm/sulong/commit/b24f57a1604c04f5736199e8ef8d83e50a53868c function pointer types should now be fully supported, including recursively on argument and return types. For example: C: ```c #include #include struct Point { double x; double y;...
While it's not our highest priority at the moment for new feature development, the LLVM runtime should work fine and it is used internally, e.g. by the Ruby implementation. Note...
Another way to do this is just pre-populate the mx cache. You can use the `MX_CACHE` env variable to point it at a different cache. I don't know whether `MX_URLREWRITE`...