kotlinx-cli icon indicating copy to clipboard operation
kotlinx-cli copied to clipboard

Add support for linux arm32 and arm64

Open mvysny opened this issue 3 years ago • 1 comments

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

mvysny avatar Sep 18 '22 07:09 mvysny

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

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

mvysny avatar Sep 18 '22 07:09 mvysny