Is it possible to call a static object (.so) file from Go? I was a regular Google and I keep clicking on what I can do
lib, _ := syscall.LoadLibrary("...")
But trying this gives an error
undefined: syscall.LoadLibrary
and search through Godocs I cannot find a link to this function in the syscall package. Can I load a library and call its functions?
user485498
source
share