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
.