I am trying to wrap a C library in Golang. I am trying to call a C function in an already compiled library. I have both a .a
file and a .so
library file.
Where do I need to place the library files and how do i tell cgo
that I am using these libraries?
I am rather a novice when it comes to C. Any help would be greatly appreciated.