I'm excited about kotlin-native, but I've found th...
# kotlin-native
d
I'm excited about kotlin-native, but I've found that it does not work out the box on Fedora26 as the path lands up with newlines. This can be fixed by replacing line 65 in dist/bin/run_konan
Copy code
cd -P "$(dirname "$source")/.." && pwd
with
Copy code
readlink -f "$(dirname "$source")/.."