Tried to native compile the hello world example on macosx catalina with Kotlin/Native: 1.3.61
kotlinc-native installed by “brew cask install kotlin-native”
Got an error popup saying ‘“libllvmstubs.dylib” cannot be opened because the developer cannot be verified’. And in the stacktrace it says “code signature in (/path/to/libllvmstubs.dylib) not valid for use in process using Library Validation: library load disallowed by system policy”
I circumvented by running “sudo xattr -d com.apple.quarantine /path/to/libllvmstubs.dylib”.
Looks like a missing apple codesign procedure somewhere
Anybody else seen this problem?