@pmunch I've used `futhark` for the first time yesterday to interface with vlc using Yardanico's https://github.com/Yardanico/nim-libvlc/blob/master/src/libvlc.nim I had to add a `{.passL: "-lvlc".}` to the file in which I used the library, because otherwise it did not link to the libvlc shared lib. Should that normally be done by hand in the wrapper (i.e. the `libvlc.nim` above) or can it be done as part of the `importc` macro? Have to say, I was always hesitant to use it due to the clang dependency, but it impressed me 😁