英文: exec: "gcc": executable file not found in %PATH% when trying go build 问题 我正在使用Windows ...
golang cgo exit status 2 on Windows
英文: golang cgo exit status 2 on Windows 问题 尝试 我想在安装了Go 1.8.1的Windows 8.1机器上编译以下代码片段。 package main /*...
导出返回双精度数组的函数。
英文: Export function that returns array of doubles 问题 在Golang中,如何导出返回双精度数组的函数。之前的方法似乎现在返回"runtim...
重新打包C类型会导致Go语言中的类型转换错误。
英文: Repackaging C types causes type cast error in Go 问题 我正在尝试重新打包一些与现有C库集成的Go代码。 以下部分代码是完全正常工作的。 文件1...
Using cgo, why does C output not 'survive' piping when golang's does?
英文: Using cgo, why does C output not 'survive' piping when golang's does? 问题 我正在使用cgo来从g...
如何在Go语言中将指向切片的指针传递给C函数
英文: How to pass pointer to slice to C function in go 问题 背景:使用cgo从Golang调用C函数。 我想使用一个具有以下签名的C函数:int f...
how can I get the data pointer of a string variable in go?
英文: how can I get the data pointer of a string variable in go? 问题 我想要获取一个字符串变量的数据指针(类似于C++中的string::...
指针在Go语言中由于垃圾回收会改变值吗?
英文: Do pointers change value in Go due to garbage collection? 问题 我是一个相对新手的Go语言开发者。我一直在使用cgo构建与C API的...
Go 无法调用 C++ 函数。
英文: Go can't call c++ function 问题 我一直在使用cgo来在Go和C之间进行接口调用。然而,当我尝试在Go和C++之间做同样的事情时,每次尝试调用函数时都会出现编...
我正在将一个带有指向值的指针的 C 结构体传递给一个 Go 函数。
英文: CGO I am passing a C struct with a pointer to a value to a go function, 问题 我对于以下情况是否需要清理内存感到困惑: ...
28