Kotlin/kotlinx-cli

Add support for linux arm32 and arm64

mvysny opened this issue · 1 comments

Please add support for linux arm32 and arm64, that would be really helpful for natives deployed on Raspberry PI

Current workaround: copy kotlinx-cli sources to your project and implement exitProcess() as follows:

internal fun exitProcess(status: Int): Nothing {
    kotlin.system.exitProcess(status)
}