Hello. I'm playing around Kotlin Native 0.2 and I'...
# kotlin-native
d
Hello. I'm playing around Kotlin Native 0.2 and I've got this exception:
Copy code
$ uname -m
i686

$ bin/kotlinc hello.kt -o hello

exception: java.lang.UnsatisfiedLinkError: kotlin-native-linux-0.2/konan/nativelib/libllvmstubs.so: kotlin-native-linux-0.2/konan/nativelib/libllvmstubs.so: wrong ELF class: ELFCLASS64 (Possible cause: architecture word width mismatch)
I have 32 bit OS but
ELFCLASS64
is used (?). Can I force compiler to use another library?
o
dector: Kotlin/Native does not support 32-bit Linux yet
d
Got it. Thanks