Here’s where I deviated from the instructions, whi...
# kotlin-native
c
Here’s where I deviated from the instructions, which may explain why I’m not able to compile. Instead of running:
cinterop -h /usr/include/math.h -pkg libc.math -o math
I created a math.def file in the current dir with:
headers = math.h
then I ran:
cinterop -def math.def -pkg libc.math -o math
to create the klib. I then installed the klib after verifying its contents.