Skip to content

Instantly share code, notes, and snippets.

@ik5
Created October 12, 2016 12:57
Show Gist options
  • Save ik5/8f0d282c16cc46bd468b4280fb94242c to your computer and use it in GitHub Desktop.
Save ik5/8f0d282c16cc46bd468b4280fb94242c to your computer and use it in GitHub Desktop.
loading external shared library made by go
package main
// #cgo LDFLAGS: -L /path/to/lib/ -lgolibrary
//
// #include <golibrary_header.h>
//
import "C"
func main() {
C.func2()
C.func3()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment