Kotlin / kotlinx-cli

Pure Kotlin implementation of a generic CLI parser.
Apache License 2.0
914 stars 71 forks source link

Add support for linux arm32 and arm64 #89

Open mvysny opened 2 years ago

mvysny commented 2 years ago

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

mvysny commented 2 years ago

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

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