英文: Compiling error with cgo: iostream:38:28: fatal error: bits/c++config.h: No such file or directo...
如何使用Go语言的cgo编译CUDA源代码?
英文: how to compile Cuda source with Go language's cgo? 问题 我写了一个简单的cuda-c程序,在eclipse nsight上运行正常。...
Cgo + Windows + Mingw-w64: “抱歉,未实现:未编译64位模式”
英文: Cgo + windows + mingw-w64 : "sorry, unimplemented: 64-bit mode not compiled in" 问题 在尝试...
使用cgo在OS X上进行go 1.5的交叉编译到Linux和Windows。
英文: go 1.5 cross compile using cgo on OS X to linux and windows 问题 我在将git2go库从OS X编译到Linux amd64时遇到了...
如何解决函数调用中指针值的变化?这是一个cgo的错误吗?
英文: How to resolve changing pointer value in function call? Is this a cgo bug? 问题 我正在通过cgo调用一个C函数,代码...
将C++与Go链接
英文: Linking C++ with Go 问题 我正在尝试将C++的OpenCV程序与Go语言绑定。我正在使用来自<https://stackoverflow.com/questions/...
将字节数组从Go传递到CGO
英文: passing a byte array from go to cgo 问题 我有以下的C代码: uint32_t cHash32(const char *s, size_t len) { r...
从Go中访问C结构字段:使用下划线还是不使用下划线?
英文: cgo C struct field access from Go: underscore or no underscore? 问题 我在访问GO代码中的C结构体时,发现在线文档和程序行为之间...
Use a GoString in C
英文: Use a GoString in C 问题 我正在尝试使用cgo在C程序中使用一些Go代码。 我的Go文件如下所示: package hello import ( "C" )...
CGO将Xlib的XEvent结构转换为字节数组的方法是什么?
英文: CGO converting Xlib XEvent struct to byte array? 问题 我正在使用Golang创建一个简单的窗口管理器(代码基于tinywm中的C代码)。为了使...
28