0

我正在尝试学习 Cgo,所以我尝试从 Cgo 访问 aerospike 客户端

package main  
// #cgo CFLAGS: -g -Wall
// #include <stdlib.h>
// #include <string.h>
// #include "aerospike-client-c/examples/put/example_utils.h"
import "C"
import (
"unsafe"
)
func main() {  
   retvals := C.putitnew()
  _=retvals
}

但我得到以下错误。(请注意,当我 make 和 make run 时 C 程序运行成功)。

undefined reference to `example_get_opts'
./aerospike-client-c/examples/put/example.c:66: undefined reference to 
`example_connect_to_aerospike'
./aerospike-client-c/examples/put/example.c:69: undefined reference to 
`example_remove_test_record'
./aerospike-client-c/examples/put/example.c:78: undefined reference to 
  `as_record_init'
./aerospike-client-c/examples/put/example.c:79: undefined reference to 
`as_record_set_int64'
/tmp/go-build283334635/b046/_x002.o: In function `as_record_set_str':
....

所以我认为问题出在 Makefile 中的配置上。我已经搜索了一整天并尝试了许多解决方案但无济于事。你能帮我如何在 Cgo 中导入 Makefile 吗?或帮助我成功执行此操作的替代方法..

4

1 回答 1

0

您需要与相关库链接。我相信图书馆被称为-laerospike. 在这种情况下,cgo指令将如下所示:

// #cgo LDFLAGS: -laerospike

请参阅cgo 文档

此外,您需要链接相关的示例代码。put我在官方存储库中没有看到示例。您可能必须直接在cgoGo 文件的部分中复制其部分源代码,因为示例通常不用于直接链接。

于 2018-10-08T09:37:15.607 回答