使用cgo编译出来了c代码,然后用go install编译出来了一个.a文件,这个.a文件是静态库么?我用ar把它解压开后,发现如下文件:
-rw-r--r-- 1 root root 397 Apr 3 22:32 __.PKGDEF
-rw-r--r-- 1 root root 6.1K Apr 3 22:32 _all.o
-rw-r--r-- 1 root root 1.4K Apr 3 22:32 _cgo_defun.6
-rw-r--r-- 1 root root 252 Apr 3 22:32 _cgo_import.6
-rw-r--r-- 1 root root 12K Apr 3 22:32 _go_.6
这些文件好像只有_all.o是正常的二进制文件,我尝试在c代码中调用这个静态库,但是报错
linux-80ha:/hdd2/xyl # gcc test.c -L. -ltest -o aa
./libtest.a: could not read symbols: Archive has no index; run ranlib to add one
collect2: error: ld returned 1 exit status
我又用_all.o做成了一个so文件,gcc -shared _all.o -o libtt.so
然后又尝试使用这个so文件,结果还是报错。
linux-80ha:/hdd2/xyl # gcc test.c -L. -ltt
./libtt.so: undefined reference to `_cgoexp_254e33f9fba9_MyFunction'
./libtt.so: undefined reference to `crosscall2'
./libtt.so: undefined reference to `_cgoexp_254e33f9fba9_MyFunction2'
collect2: error: ld returned 1 exit status
这个编译出来的c接口,到底如何使用呢?
有疑问加站长微信联系(非本文作者)