英文: mmap buffer to file handle 问题 我需要“伪造”一个支持fstat的文件描述符,我是这样做的。 func ScanBytes(b []byte) error { si...
将结构体和结构体数组从Go语言传递给C函数。
英文: Pass struct and array of structs to C function from Go 问题 遇到了这个问题。只能获取传递结构的第一个成员...我做错了什么?从Go语言传...
可以将Go包编译成.so或.a文件吗?
英文: Is it possible to make go packages a .so or .a file? 问题 最近我花了一些时间学习cgo以及如何在Go语言中编写C代码。使用#cgo指令加载...
当使用`go build`编译cgo包时,找不到C标准库。
英文: go build doesn't find my C standard library when compiling cgo package 问题 我正在尝试在树莓派上编译一个Go项目...
Cgo链接器在C常量上出现错误。
英文: Cgo linker errors on C constants 问题 我正在使用cgo来封装一个C库,遇到了一组奇怪的链接器错误。我已经将问题简化为以下内容: 一个文件header.h包含了...
GoLang / CGO:在Go中调用Mach API的host_statistics()时出现问题
英文: GoLang / CGO: Problems calling Mach API host_statistics() from Go 问题 我使用以下的C代码片段来获取OS X上的CPU负载: ...
将现有的C代码集成到Go中。将无符号字符指针的结果转换为[]byte类型。
英文: Integrating existing C code to Go. Convert unsigned char poiner result to []byte 问题 这是一个简单的示例: p...
Golang(cgo)- 支持使用cgo嵌套结构体吗?
英文: Golang (cgo) - Support for nested structs with cgo? 问题 我正在尝试使用cgo为x264库编写一个小的包装器,并遇到了嵌套结构的问题。该库使...
如何从Windows API中访问结构体中的联合变量?
英文: How to access a variable in an union in a struct from the Windows API? 问题 我得到了input.ki undefined...
处理期望以字节为单位的CGo函数的规范方法是什么?
英文: What is the canonical way to deal with CGo functions that expect size in memory in bytes? 问题 我正在...
28