0 | Golang:基础构建工具使用

Golang 里面有一堆看起来很高大上的名词,以及一些自带的工具链。

1
brew install golang

安装完之后,有一堆默认的配置信息,可以通过 go env 来进行查看:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
╰─$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/akina/Library/Caches/go-build"
GOENV="/Users/akina/Library/Application Support/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOINSECURE=""
GONOPROXY=""
GONOSUMDB=""
GOOS="darwin"
GOPATH="/Users/akina/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/Cellar/go/1.14.6/libexec"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/Cellar/go/1.14.6/libexec/pkg/tool/darwin_amd64"
GCCGO="gccgo"
AR="ar"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/km/t6kk56y13ns2yf91lwq58gbh0000gn/T/go-build924722399=/tmp/go-build -gno-record-gcc-switches -fno-common"

其中有几个比较重要的变量,需要注意。

GOROOT

Golang 的安装目录。本机上的 GOROOT 为:/usr/local/Cellar/go/1.14.6/libexec,它的目录结构如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
╰─$ tree -L 1 /usr/local/Cellar/go/1.14.6/libexec
/usr/local/Cellar/go/1.14.6/libexec
├── CONTRIBUTING.md
├── CONTRIBUTORS
├── PATENTS
├── SECURITY.md
├── VERSION
├── api
├── bin
├── doc
├── favicon.ico
├── lib
├── misc
├── pkg
├── robots.txt
├── src
└── test

GOPATH

同样是一个变量,且变量值的内容是一个目录,那 Golang 拿着这个变量来做什么呢?它的作用用文字说明可能比较苍白无力、甚至有点抽象,用亲手实践来看看它到底有什么用处。在本机中,GOPATH 的值(默认值:$HOME/go)为:/Users/akina/go

1
2
3
4
5
╰─$ tree -L 1 /Users/akina/go
/Users/akina/go
├── bin
├── pkg
└── src

其中会自动生成三个文件夹,它们的作用分别为:

文件夹 作用
bin golang 编译可执行文件存放路径,可自动生成。
pkg golang编译的.a中间文件存放路径,可自动生成。
src 源码路径。按照golang默认约定,go run,go install等命令的当前工作路径(即在此路径下执行上述命令)

暂时将其视为一个普通的目录,拥有三个普通的文件夹。先看后面的 go buildgo installgo run

GOBIN

go install 编译存放路径。为空时则遵循“约定优于配置”原则,可执行文件放在各自 GOPATH 目录的 bin 文件夹中,即 $GOPATH/bin

有两种情况下,bin 目录会变得没有意义。

  • 当设置了有效的 GOBIN 环境变量以后,bin 目录就变得没有意义。
  • 如果 GOPATH 里面包含多个工作区路径的时候,必须设置 GOBIN 环境变量,否则就无法安装 Go 程序的可执行文件。

GOPROXY

如果遇到下载不下来包的情况,可以考虑尝试设置 GOPROXY 。如下(>=1.13):

1
2
3
4
5
6
7
8
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.io,direct

# 设置不走 proxy 的私有仓库,多个用逗号相隔(可选)
go env -w GOPRIVATE=*.corp.example.com

# 设置不走 proxy 的私有组织(可选)
go env -w GOPRIVATE=example.com/org_name

go build

usage: go build [-o output] [-i] [build flags] [packages]

Build compiles the packages named by the import paths, along with their dependencies, but it does not install the results.

If the arguments to build are a list of .go files from a single directory, build treats them as a list of source files specifying a single package.

When compiling packages, build ignores files that end in ‘_test.go’.

When compiling a single main package, build writes the resulting executable to an output file named after the first source file (‘go build ed.go rx.go’ writes ‘ed’ or ‘ed.exe’) or the source code directory (‘go build unix/sam’ writes ‘sam’ or ‘sam.exe’).

The ‘.exe’ suffix is added when writing a Windows executable.

When compiling multiple packages or a single non-main package, build compiles the packages but discards the resulting object, serving only as a check that the packages can be built.

  • go build 命令默认编译当前目录下的所有 go 文件
  • go build a.go 只编译 a.go 文件
    缺省编译 & 编译某个文件
    如果将编译对象换成不含有 main 函数的代码,没有任何输出
    编译 non-main 代码
  • go build IMPORT-PATH 编译在 $GOPATH/src 下面的 IMPORT-PATH 包,并在当前目录 (pwd)下,生成可执行文件(对含有 main 函数的代码来说)
    编译 GOPATH 下的包

go install

它在 go build 的基础上,将编译后的可执行文件中间文件,移动到 $GOPATH 的 bin 或 pkg 目录下。

install

go run

类似于 go build,可以在其它目录,仅指定在 $GOPATH 下的包名,即可运行该包内容;也可以指定一个含有 main 函数的文件。如下:

run

go get

用于从远程代码仓库(比如 Github 等 )上下载并安装代码包。下载源码包的go工具会自动根据不同的域名调用不同的源码工具,对应关系如下:

仓库 源码工具
BitBucket Mercurial Git
GitHub Git
Google Code Project Hosting Git, Mercurial, Subversion
Launchpad Bazaar

它会把当前的代码包下载到 $GOPATH 中的第一个工作区的 src 目录中,并安装。

  • -d:只下载不安装
  • -u:更新已下载的代码包

执行 go get 后所安装的内容

GoLand 中打开的 terminal 会自动将 $GOPATH/bin 添加到 PATH 变量中,导致在 GoLand 的 terminal 上可以使用通过 go get 安装的命令,在 iTerm2 上面就不行。只要在 .bashrc/.zshrc 中,将 $GOPATH/bin 添加到 PATH 变量中就可以在 iTerm2 中使用。

go fmt

将代码整理成 Golang 风格。

usage: go fmt [-n] [-x] [packages]

Fmt runs the command ‘gofmt -l -w’ on the packages named by the import paths. It prints the names of the files that are modified.

For more about gofmt, see ‘go doc cmd/gofmt’.
For more about specifying packages, see ‘go help packages’.

The -n flag prints commands that would be executed.
The -x flag prints commands as they are executed.

The -mod flag’s value sets which module download mode to use: readonly or vendor. See ‘go help modules’ for more.

To run gofmt with specific options, run gofmt itself.

go fmt 实际调用的是 gofmt -l -w,而 gofmt 的使用如下:

1
2
3
4
5
6
7
8
9
10
usage: gofmt [flags] [path ...]
-cpuprofile string
write cpu profile to this file
-d display diffs instead of rewriting files
-e report all errors (not just the first 10 on different lines)
-l list files whose formatting differs from gofmt's
-r string
rewrite rule (e.g., 'a[b:len(a)] -> a[b:]')
-s simplify code
-w write result to (source) file instead of stdout

gofmt 与 go 在同一级目录,都在 $GOROOT/bin 下:

看看效果:

初始样式

Before go fmt

执行 go fmt,可以明显看出,代码变整齐了。

go test

Reference

0 | Golang:基础构建工具使用

https://eucham.me/2020/08/20/6ec2646852dc.html

作者

遇寻

发布于

2020-08-20

更新于

2021-02-09

许可协议

评论