How do you add additional directiries to linker co...
# kotlin-native
b
How do you add additional directiries to linker context so that libraries in
linkerOpts
would get found? Also, is there a konan
.def
file schema somewhere?
Nvm, figured it out:
linkerOpts.linux = -L/usr/lib/x86_64-linux-gnu -lmongoc-1.0 -lbson-1.0
k
i prefer to put the
-lsomelibrary
in the def file and the paths in the gradle files
👍 1