英文: Is there a way to include multiple c-archive packages in a single binary 问题 我正在尝试将多个Go c-archive...
cgo的交叉编译(针对darwin)失败了。
英文: Cross-compilation of cgo (for darwin) fails 问题 我对Go和Linux都比较新手。 我在Linux环境下构建了一个应用程序,该应用程序使用了基于cg...
构建Go与Gtk+的C接口
英文: Building Go with C interface to Gtk+ 问题 我正在尝试构建一个使用外部C代码作为Gtk+接口的Go程序。 这是我得到的基本Go代码(ui.h.go): pa...
cgo how to represent go types in c?
英文: cgo how to represent go types in c? 问题 在将函数从C语言移植到Go语言时,如果要使用接口类型GoInterface和整型GoInt,你需要进行一些调整。以...
如何使用cgo将C语言的“hello world”程序包装到argv中?
英文: How to wrap a C "hello world" with argv using cgo? 问题 考虑以下的hello.c代码: #include <std...
缺失的符号来自一个动态库。
英文: Missing symbols from a dylib 问题 我正在尝试在一个C++库周围创建一个C API,以便稍后在Golang中进行封装。我首先生成了一个带有一个函数的dylib,以便...
Cgo: 无法在Go中设置C结构中的回调函数。
英文: Cgo: can't set callback in C-struct from Go 问题 我有一个在C库中定义了一些回调函数的结构体。问题是Go将这些字段视为*[0]byte数组类...
Cgo:找不到使用带有const char*参数的回调函数的方法
英文: Cgo: can't find way to use callbacks with const char* argument 问题 我使用Cgo从Go中使用C库,除了回调函数之外都很好...
无法包含go程序所需的C头文件。
英文: Unable to include required C header files for go program 问题 我正在尝试在我的Go程序中包含一个位于/usr/local/WordNe...
使用C风格迭代器与Go的惯用方式是什么?
英文: idiomatic way to use c style iterator with Go 问题 我非常新于Go编程(3-4天),我正在尝试使用现有的第三方C库(使用cgo)编写一些读取二进制...
28