英文: cgo: use typedef struct in preamble 问题 我正在尝试为lirc创建Go绑定:https://github.com/inando/go-lirc 像lirc_...
如何在C语言中将数组作为参数列表传递给具有可变参数数量的函数?
英文: How can I pass an array as a list of args to a function with varying number of parameters in C 问...
SIGTRAP:在运行go test时,Golang包装C库时发生的跟踪陷阱错误。
英文: SIGTRAP: trace trap error in Golang wrapping C library, but only when running go test 问题 我已经设置了一...
golang exec.Command无法运行C二进制文件。
英文: golang exec.Command couldn't run C binaries 问题 我正在使用exec.Command和exec.Start()执行一个C可执行文件。我的C可...
Go语言与C库的包链接
英文: Go package linkage with a C library 问题 希望这是一个基本问题。我正在尝试构建一个Go包,其中包含来自用C编写的库的函数。结构基本如下: package t...
Deleting memory in go
英文: Deleting memory in go 问题 我正在使用new在C++中分配内存,然后在我的Go代码中访问它。 有没有办法在Go代码中删除这块内存。 这是我的代码流程: func f_Go...
Go TCP读取是非阻塞的。
英文: Go TCP read is non blocking 问题 我正在尝试在Go语言中创建一个服务器和客户端,我已经成功地实现了服务器和客户端之间的通信。但是我遇到的问题是,Golang中的TC...
如何使用Cgo访问MATLAB数组中的值?
英文: How do I access the values inside a MATLAB array using Cgo? 问题 使用MatLab C API和Go的Cgo包,我正在尝试在我的Go...
将字节转换为带有二进制补码的整数。
英文: byte to int with twos complement 问题 以下是要翻译的内容: 下面的C代码片段来自于rtl_fm.c,它是rtlsdr项目的一部分(我添加了printf语句) ...
在Go程序中使用C代码时出现未声明的标识符。
英文: Undeclared Identifiers when using C code in a Go Program 问题 我正在尝试使用从IRIS网站下载的一个库。makefile包括创建动态库...
146