golang呼び出しダイナミックライブラリ
3450 ワード
ダイナミックライブラリのテスト
test_so.h
test_so.c
soを生成する
soファイルをgolangプロジェクトディレクトリにコピー
golangプロジェクトディレクトリ、構築
load_so.h
load_so.c
test.go
コンパイルして実行すればいい.
注:ある大神がgoでcを呼び出したとき、ある穴に落ちて、住所http://www.newjueqi.com/?p=106、結論は
1./**/注釈のコード次の行は必ずimport"C"で、真ん中に空の行があることはできません.import「C」は1行ずつでなければならず、他のライブラリと一緒にインポートできません.
test_so.h
int test_so_func(int a,int b);
test_so.c
#include "test_so.h"
int test_so_func(int a,int b)
{
return a*b;
}
soを生成する
gcc -shared ./test_so.c -o test_so.so
soファイルをgolangプロジェクトディレクトリにコピー
golangプロジェクトディレクトリ、構築
load_so.h
int do_test_so_func(int a,int b);
load_so.c
#include "load_so.h"
#include
int do_test_so_func(int a,int b)
{
void* handle;
typedef int (*FPTR)(int,int);
handle = dlopen("./test_so.so", 1);
FPTR fptr = (FPTR)dlsym(handle, "test_so_func");
int result = (*fptr)(a,b);
return result;
}
test.go
package main
/*
#include "load_so.h"
#cgo LDFLAGS: -ldl
*/
import "C"
import "fmt"
func main() {
fmt.Println("20*30=", C.do_test_so_func(20, 30))
}
コンパイルして実行すればいい.
注:ある大神がgoでcを呼び出したとき、ある穴に落ちて、住所http://www.newjueqi.com/?p=106、結論は
1./**/注釈のコード次の行は必ずimport"C"で、真ん中に空の行があることはできません.import「C」は1行ずつでなければならず、他のライブラリと一緒にインポートできません.