It it possible to run a Kotlin/Native binary on Ce...
# kotlin-native
t
It it possible to run a Kotlin/Native binary on CentOS 6? Or more specifically CloudLinux, which is apparently based on CentOS 6. A normal executable fails because of the extremely ancient glibc, so I tried building a static library and bootstrapping it from a C program compiled on the target host with
gcc -ldl -lm -lpthread -lstdc++ hello-kt.c libuntitled.a
, but that fails due to various undefined symbols such as
std::chrono::_V2::steady_clock::now()
and
__cpu_model
.
n
I haven't heard of any cases where Kotlin Native programs work on CentOS. You are better off running Kotlin Native programs on Debian or Ubuntu, or any other Linux distribution that is based on Debian or Ubuntu like Linux Mint for example.