英文: Golang fails to link an aarch64/arm64 binary on an x86_64 machine while cross compiling 问题 我正在尝试...
golang os.Setenv does not work in cgo C.dlopen?
英文: golang os.Setenv does not work in cgo C.dlopen? 问题 由于某种原因,我无法将$LD_LIBRARY_PATH设置为全局环境变量。我尝试在gola...
如何在cgo中使用包装器释放unsafe.Pointer?
英文: How to free unsafe.Pointer using a wrapper in cgo? 问题 你可以在Go代码中使用C.free函数来释放unsafe.Pointer指向的内存。...
获取错误:使用cgo时无法确定C.functionName()的名称类型。
英文: Getting error : "could not determine kind of name for C.functionName()" with cgo 问题 我正...
CGo无法编译C文件。
英文: CGo doesn't compile C files 问题 我有一个非常简单的设置:一个.go文件(test.go)和一个.c文件(PMDK.c)。我在Go中包含.c文件的方式如下:...
调用cgo时出现分段错误错误,当调用fts_open函数时。
英文: Segmentation violation error when calling fts_open via cgo 问题 我是你的中文翻译助手,以下是翻译好的内容: 我正在测试cgo,每个简...
Go / Cgo – 如何访问 C 结构体的字段?
英文: Go / Cgo - How to access a field of a Cstruct? 问题 我正在开发一个使用Go语言编写的应用程序,用于将音频文件从一种格式转码为另一种格式: 我使用...
构建一个可以在桌面和移动设备上运行的服务器。
英文: Building a server that can run every where, desktop and mobile 问题 我可以使用相同的代码库在移动端的webview上运行我的应用...
将 “errno” 转换为 Go 语言的错误处理方式。
英文: errno to Go errors 问题 我正在尝试从Go代码中发出KVM ioctls。目前我有以下代码: func (vm *Vm) RegisterIrqFd(efd *EventFd...
为什么不允许将interface{}转换为cgo类型?
英文: Why casting interface{} to cgo types is not allowed? 问题 这更像是一个技术问题,而不是一个实际的问题。由于在cgo中我们没有可变参数函数,...
28