英文: Running gcc failed while building go project in windows 问题 我尝试使用go build编译我的项目,但是出现了以下错误: > C...
作为构建过程的一部分运行命令行工具。
英文: Run a command line tool as part of build process 问题 我刚刚开始学习Go语言,同时也想学习Sublime Text。 我已经安装了官方的Sub...
如何使用与Golang包不同的名称构建可执行文件
英文: How to build executable with name other than Golang package 问题 如果我的Golang包名是以下之一:github.com/user...
如何在Windows上使用基于cgo的包?
英文: How do I use a cgo-based package on Windows? 问题 Go语言标准库中的regexp功能相对较弱,因此我需要一个更强大的引擎,比如Python中的正则...
使用go build,但我也看到了-test标志。
英文: Using go build but I also see the -test flags 问题 我有一个 main.go 和 mypkg/...go 文件。我使用 go build -o m...
构建 Golang 项目的正确方法
英文: Building Golang project properly 问题 我有一个项目结构,看起来像这样: 我计划只使用一个 shell 脚本(build.sh)来设置 GOPATH 并构建项目...
Go错误: “嵌入类型不能是指向接口的指针”
英文: Go error: "embedded type cannot be a pointer to interface" 问题 以下代码会在编译时出现错误: type IFil...
运行”go install”时出现错误。
英文: Running go install results in error 问题 我在Windows上安装了Go。GOPATH设置为: c:\go-workspace 我在这个目录下有一个名为lo...
一致的构建/从二进制文件中删除个人信息
英文: Consistent builds / remove personal information from binaries 问题 我现在意识到,Go语言在二进制文件中保存源代码的绝对路径,以便...
将多个二进制文件构建到当前目录中。
英文: Build multiple binaries into current directory 问题 当在任何目录中执行go build github.com/.../foo时,编译后的二进制文...
17