Last active
October 12, 2016 13:03
-
-
Save ik5/3e54a93b6000ea7b7c1d1fbb65933eaa to your computer and use it in GitHub Desktop.
Creating
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
/* | |
go build -buildmode=c-shared -o libgolibrary.so libgolibrary.go | |
go tool cgo | |
*/ | |
import "C" | |
import "fmt" | |
//export func2 | |
func func2() { | |
fmt.Println("func2") | |
} | |
//export func3 | |
func func3() { | |
fmt.Println("func3") | |
} | |
func main() {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment