英文: Can't reach stdout from Docker using Go client 问题 我有一个小项目,我的Go服务器会将通过HTTP发送的C文件复制到Docker容器中,...
Golang CGO使用大型字符指针-SEGSERV
英文: Golang CGO with large char pointer - SEGSERV 问题 我有大量的数据从TagLib库中读取,并传递给GoLang(mpeg图像数据)。 这是获取数据的...
如何在Go中将切片发送到函数?
英文: How to send a slice to a function in Go? 问题 我正在将一些C代码改写成Go代码。在我的C代码中,有这样的内容: static void sharedb...
将C数组和指针代码转换为Go语言。
英文: Converting C array and pointer code to Go 问题 我正在尝试将一个C代码重写为Go,我注意到要重写的代码遵循了一个常见的模式。许多函数接受unsigne...
如何调试使用cgo调用的C代码?
英文: How can I debug C code called with cgo? 问题 背景 我目前正在为这个库编写一个Go接口。 作为第一步,我正在尝试通过Go包装器调用/test/test_...
How to cast bytes to struct(c struct) in go?
英文: How to cast bytes to struct(c struct) in go? 问题 package main /* #define _GNU_SOURCE 1 #include &...
无法在Go中读取utmpx文件。
英文: Can not read utmpx file in go 问题 package main import ( "os" "fmt" ) func main() ...
"Undefined symbols for architecture x86_64:" for library using cgo on macOS Sierra
英文: "Undefined symbols for architecture x86_64:" for library using cgo on macOS Sierra 问题 ...
C long double in golang
英文: C long double in golang 问题 我正在将一个算法从C语言移植到Go语言,但是有点困惑。这是C语言的函数: void gauss_gen_cdf(uint64_t cdf[...
一个简洁的二叉树求和,数组构建和寻址。
英文: A succinct binary tree of sums, array construction and addressing 问题 使用'sum'作为某个任意计算的简写。我有一个计算过程...
146