kotlinx-cli
kotlinx-cli copied to clipboard
Add support for linux arm32 and arm64
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)
}