Updated FAQ (markdown)

wwqgtxx 2023-10-26 11:23:45 +08:00
parent 9a50b721fc
commit f65b39311b

4
FAQ.md

@ -12,12 +12,14 @@ release 中,包的文件名中包含了多个信息,包括
> * `默认(无额外标识)`: 使用GOAMD64=v3标签编译的默认版本。 > * `默认(无额外标识)`: 使用GOAMD64=v3标签编译的默认版本。
> * `cgo`: 使用GOAMD64=v1标签进行编译。该版本具有与默认版本不同的功能和特性包括支持lwip tun堆栈。 > * `cgo`: 使用GOAMD64=v1标签进行编译。该版本具有与默认版本不同的功能和特性包括支持lwip tun堆栈。
> * `compatible`: 使用GOAMD64=v1标签进行编译。该版本是为了兼容特定的操作系统或架构而编译的。 > * `compatible`: 使用GOAMD64=v1标签进行编译。该版本是为了兼容特定的操作系统或架构而编译的。
> * `go120`: 使用Golang1.20版本进行编译。该版本是为了兼容特定的操作系统或架构而编译的。
* 分支alpha * 分支alpha
* 提交的git hash值如f90066f * 提交的git hash值如f90066f
可以根据这些信息选择你需要下载的可执行文件。 可以根据这些信息选择你需要下载的可执行文件。
👉[在此了解](https://github.com/golang/go/wiki/MinimumRequirements#amd64)更多关于 GOAMD64 标签的信息 👉[在此了解](https://github.com/golang/go/wiki/MinimumRequirements#amd64)更多关于 GOAMD64 标签的信息
👉[在此了解](https://go.dev/doc/go1.20#ports)更多关于Golang1.20版本的系统兼容性信息
### Which file should I download? ### Which file should I download?
@ -30,6 +32,7 @@ In`release`, the filename of each package includes several pieces of information
> * `default(not specified in file name)`: Default version compiled with GOAMD64=v3 tag. > * `default(not specified in file name)`: Default version compiled with GOAMD64=v3 tag.
> * `cgo`: Compiled with GOAMD64=v1 tag and supports lwip tun stack. > * `cgo`: Compiled with GOAMD64=v1 tag and supports lwip tun stack.
> * `compatible`: Compiled with GOAMD64=v1 tag for compatibility with specific OS or architecture. > * `compatible`: Compiled with GOAMD64=v1 tag for compatibility with specific OS or architecture.
> * `go120`: Compiled with Golang1.20 for compatibility with specific OS or architecture.
* Compile branch (e.g., `alpha`) * Compile branch (e.g., `alpha`)
* Git hash value of the commit (e.g., `f90066f`) * Git hash value of the commit (e.g., `f90066f`)
@ -37,3 +40,4 @@ You can choose the executable file you need based on these pieces of information
Check details between different architectural levels [here](https://github.com/golang/go/wiki/MinimumRequirements#amd64). Check details between different architectural levels [here](https://github.com/golang/go/wiki/MinimumRequirements#amd64).
Check details of system compatibility information about Golang version 1.20 [here](https://go.dev/doc/go1.20#ports).