Go命令基础之go build
程序员文章站
2022-07-07 15:13:44
...
一 简介
1、用于编译源码文件或代码包。
2、编译非命令源码文件不会产生任何结果文件。
3、编译命令源码文件会在该命令的执行目录中生成一个可执行文件。
4、执行该命令且不追加任何参数时,它会试图把当前目录作为代码包并编译。
5、执行该命令且以代码包的导入路径作为参数时,该代码包及其依赖会被编译。
加入-a标记后,所有涉及到的代码包都会被重新编译。
不加入-a标记,则只会编译归档文件不是最新的代码包。
6、执行该命令且以若干源码文件作为参数时,只有这些文件会被编译。
二 实战
[root@localhost ds]# ls
showds.go
[root@localhost ds]# go build showds.go
[root@localhost ds]# ls
showds showds.go
[root@localhost ds]#./showds
/root/goc2p/src/helper/ds:
showds.go
showds
[root@localhost ds]# go run showds.go
/root/goc2p/src/helper/ds:
showds.go
showds
[root@localhost ds]# cd ../../pkgtool/
[root@localhost pkgtool]# pwd
/root/goc2p/src/pkgtool
[root@localhost pkgtool]# go build
[root@localhost pkgtool]# ls
envir.go envir_test.go fpath.go ipath.go pnode.go util.go util_test.go