go与c混合编程的基本流程

写好hello.c文件

#include 
#include "hello.h"
void print()
{
	printf("hello from c\n");
}

写好so的接口头文件hello.h

void print();

编译成.so,起名是libhello.so

gcc hello.c -fPIC -shared -o libhello.so

编写go文件,hg.go

package main

/*
#cgo CFLAGS: -I./
#cgo LDFLAGS: -L./ -lhello
#include "hello.h"
*/
import "C"
import (
    "fmt"
)

func main() {
    C.print()
    fmt.Println("vim-go")
}
在go文件的头文件部分需要指定cgo需要的include路径,lib库的路径,lib库,头文件等等。

然后编译

go build hg.go
编译生成hg,是可执行文件,通过ldd可以验证是否正确加载了libhello.so的库

你可能感兴趣的:(go)