Zalim Bashorov
Zalim Bashorov
AFAIK you need to extract your dynamic library to somewhere (usually to some tmp dir) and load it by calling `System.load` with a path to the file. You can delegate...
Could you please share a simple working example in Java?
Honestly, I don't think it's something specific for Kotlin, likely it will not work in a clean environment for any JVM languages, including Java. It could work for somebody because...
You can find a simple example with Kotlin and Java [here](https://www.dropbox.com/s/cf0y7g0zjynnvwe/CallWasmer.zip?dl=0). Both fail with `UnsatisfiedLinkError: no wasmer_jni in java.library.path`.
@Arash217 I've tried on macOS. How did you run it in Docker?
@iNoles do you compare it to ktor in terms of size?
@hydai @q82419 WasmEdge `0.14.0-alpha.2` doesn't work on macOS, at least due to a lack of `libprotobuf.25.1.0` and `libgrpc++.1.60.dylib`.
@hydai @q82419 Any ETA for alpha.3? Do you have any plans for EH proposal in 0.14.0?
Good to know! @hydai thank you for the quick reply.
Hi, @hydai! Good news, I managed to run a sample compiled from Kotlin in WasmEdge `0.14.0-rc.1` and print something to the stdout. But it required some tricks to avoid initialization,...