go_compiler

Resolving a package to a module

bash 复制代码
When the go command loads a package using a package path, it needs to determine which module provides the package.
If no modules provide the package or if two or more modules provide the package, the go command reports an error.
The -mod=mod flag instructs the go command to attempt to find new modules providing missing packages and to update
go.mod and go.sum.
The go get and go mod tidy commands do this automatically.
#通过GOPROXY中的地址下载module依赖
When the go command looks up a new module for a package path, it checks the GOPROXY environment variable, which is
a comma-separated list of proxy URLs or the keywords direct or off.
A proxy URL indicates the go command should contact a module proxy using the GOPROXY protocol.
direct indicates that the go command should communicate with a version control system.
off indicates that no communication should be attempted.
#寻找可能提供此package的module
For each entry in the GOPROXY list, the go command requests the latest version of each module path that might
provide the package (that is, each prefix of the package path).
For each successfully requested module path, the go command will download the module at the latest version and check
whether the module contains the requested package.
If no modules are found, the go command tries the next entry in the GOPROXY list.
#成功找到
After a suitable module has been found, the go command will add a new requirement with the new module's path
and version to the main module's go.mod file.

go.mod文件

bash 复制代码
require指令
#require module-path module-version
#Declares a module as a dependency of the current module, specifying the minimum version of the module required.
#For each required module version, the go command loads the go.mod file for that version and incorporates the
#requirements from that file.
#indirect表示该module中的package没有被项目直接依赖
#An // indirect comment indicates that no package from the required module is directly imported by any package in
#the main module.

compiler

bash 复制代码
gc是Go compiler,GC是garbage collection
go tool compile -h
-gcflags=-lang=go1.22,会将参数传给go tool compile.

The build flags are shared by the build, clean, get, install, list, run, and test commands:
-x,print the commands.(可以查看go build,run,clean的执行细节)
-asmflags,arguments to pass on each go tool asm invocation.
-gcflags,arguments to pass on each go tool compile invocation.
-ldflags,arguments to pass on each go tool link invocation.
The -asmflags, -gccgoflags, -gcflags, and -ldflags flags accept a space-separated list of arguments to pass to an
underlying tool during the build.

https://go.dev/ref/mod

https://go.dev/doc/modules/gomod-ref

https://pkg.go.dev/cmd/go@go1.22.3

https://cs.opensource.google/go/go/+/refs/tags/go1.22.3:src/cmd/compile/;bpv=0

https://github.com/golang/go/blob/master/src/cmd/compile/README.md

https://www.reddit.com/r/golang/comments/16okuwb/can_you_explain_to_me_what_is_gopath/

https://www.yasint.dev/gopath-goroot

相关推荐
绛洞花主敏明1 天前
Go切片的赋值
c++·算法·golang
007php0072 天前
某游戏大厂 Java 面试题深度解析(四)
java·开发语言·python·面试·职场和发展·golang·php
꒰ঌ 安卓开发໒꒱2 天前
Go高并发在企业级项目中的实战应用:数据库访问与GIN+GORM深度实践
数据库·golang·gin
请你喝好果汁6412 天前
python入门到编程第三章
golang
数据知道2 天前
Go语言设计模式:抽象工厂模式详解
设计模式·golang·抽象工厂模式·go语言
数据知道2 天前
Go语言设计模式:组合模式详解
设计模式·golang·组合模式·go语言
周杰伦_Jay2 天前
【网络编程、架构设计与海量数据处理】网络编程是数据流转的血管,架构设计是系统扩展的骨架,海量数据处理是业务增长的基石。
网络·golang·实时互动·云计算·腾讯云·语音识别
岁忧2 天前
Go channel 的核心概念、操作语义、设计模式和实践要点
网络·设计模式·golang
Tony Bai2 天前
从 Python 到 Go:我们失去了什么,又得到了什么?
开发语言·后端·python·golang
雪域迷影2 天前
Go语言中通过get请求获取api.open-meteo.com网站的天气数据
开发语言·后端·http·golang·get