I'm getting this when trying to link WASM to relea...
# kotlin-native
b
I'm getting this when trying to link WASM to release executable:
Copy code
error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory
Any tips?
a
Do you experience the same error with other kind of targets?
b
Nvm, turns out it was a schoolboy error. I was missing libtinfo.so.5 on my PopOS. So a simple
sudo apt install libtinfo5
fixed it.
🎉 1