I am having an issue building my cinterop library,...
# kotlin-native
c
I am having an issue building my cinterop library, below is the cinterop file I produced to bind
glib
. While it produces the bindings, When attempting to build I get the following error
Copy code
e: /home/doomsdayrs/.konan/dependencies/x86_64-unknown-linux-gnu-gcc-8.3.0-glibc-2.19-kernel-4.9-2/x86_64-unknown-linux-gnu/bin/ld.gold invocation reported errors

The /home/doomsdayrs/.konan/dependencies/x86_64-unknown-linux-gnu-gcc-8.3.0-glibc-2.19-kernel-4.9-2/x86_64-unknown-linux-gnu/bin/ld.gold command returned non-zero exit code: 1.
output:
/home/doomsdayrs/.konan/dependencies/x86_64-unknown-linux-gnu-gcc-8.3.0-glibc-2.19-kernel-4.9-2/x86_64-unknown-linux-gnu/bin/ld.gold: error: cannot find -lglib-2.0
b
You're missing paths to that lib headers. Have a look at how to configure them here
👍 1