1 回答
TA贡献1856条经验 获得超11个赞
如果您在 cgo.xml 中看到消息“未定义对 xxx 的引用”。您很可能错过了到共享库的链接。
我对这个包不太熟悉,但我建议您可以尝试添加如下内容以使您的程序链接到 C 动态库:
// #cgo LDFLAGS: -lyour-lib
在上述情况下,我将我的 go 程序链接到一个名为“libyour-lib.so”的 C 动态库。
例子
假设您的 TIFF 源来自http://www.simplesystems.org/libtiff/
脚步
下载源代码
检查 README.md(或 INSTALL)以阅读有关如何编译此 C 库的指南
按照提供的说明安装 C 库
如果您在不修改默认设置的情况下正确操作,您应该在 /usr/local/include 中找到 tiff 标头,在 /usr/local/lib 中找到其动态库
通过为 cgo 编译器提供适当的提示,将这些东西集成到你的 go 程序中。
代码
我已经成功构建了这个程序,并按预期执行。这对您来说可能是一个很好的起点。
package main
// #cgo LDFLAGS: -ltiff
// #include "tiffio.h"
// #include <stdlib.h>
import "C"
import (
"fmt"
"unsafe"
)
func main() {
path, perm := "foo.tif", "w"
// Convert Go string to C char array. It will do malloc in C,
// You must free these string if it no longer in use.
cpath := C.CString(path)
cperm := C.CString(perm)
// Defer free the memory allocated by C.
defer func() {
C.free(unsafe.Pointer(cpath))
C.free(unsafe.Pointer(cperm))
}()
tif := C.TIFFOpen(cpath, cperm)
if tif == nil {
panic(fmt.Errorf("cannot open %s", path))
}
C.TIFFClose(tif)
}
- 1 回答
- 0 关注
- 163 浏览
添加回答
举报