将动态 C++ 库与 CGO

问题描述

我在 Go 代码中使用了由 c++ 编写的动态 libaray,如下所示:

/*
#cgo CFLAGS: -I include
#cgo LDFLAGS: -L lib -ldemo
#include "demo.h"
*/
import "C"

func main() {
   C.demo() // demo function in c++ library
}

libdemo.so 库依赖于系统动态库,例如 fontmanager

运行 Go 代码时出现 undefined reference错误错误详情如下:

/usr/bin/ld: ./lib/libdemo.so: undefined reference to `FT_GlyphSlot_Own_Bitmap'
/usr/bin/ld: ./lib/libdemo.so: undefined reference to `FT_Get_Color_Glyph_Layer'
/usr/bin/ld: ./lib/libdemo.so: undefined reference to `FT_Get_Glyph_Name'
/usr/bin/ld: ./lib/libdemo.so: undefined reference to `FcLangSetCreate'
/usr/bin/ld: ./lib/libdemo.so: undefined reference to `FcFontSetMatch'
/usr/bin/ld: ./lib/libdemo.so: undefined reference to `FT_Get_X11_Font_Format'
... more ...

我尝试使用 ld 命令如下:

ld /mycode/lib/libdemo.so   # Same `undefined reference`

ld /usr/lib/x86_64-linux-gnu/font-manager/libfontmanager.so /mycode/lib/libdemo.so 
# Link successful

我想我应该在 Go Code 中包含所有依赖项,但我不知道如何在 Go 代码中包含动态库的引用,或者在 Go 代码中包含多个动态库。

场景 1:

`GoCode` include `DynamicLibA`
`DynamicLibA` include `DynamicLibB`

场景 2:

`GoCode` include `DynamicLibA`
`GoCode` include `DynamicLibB`

一个问题: 这个问题是不是包含所有依赖库导致的?

第二个问题: 以上2个场景中,如何在Go代码中包含库?

请给一些建议,非常感谢。

解决方法

这个问题是不是包含所有依赖库导致的?

是的。更准确地说,libdemo.so 没有正确链接——它应该-lfontmanager 链接,但没有。

ld /usr/lib/x86_64-linux-gnu/font-manager/libfontmanager.so /mycode/lib/libdemo.so

这个命令纯属胡说八道。它什么都不做任何

您想要的命令(您应该永远在 UNIX 系统上使用 ld,除非您要链接操作系统、引导加载程序或类似的东西):

gcc -shared -o libdemo.so demo.o -lfontmanager