diff options
| author | Xiaodong Liu <liuxiaodong@loongson.cn> | 2021-08-15 15:53:05 +0800 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2022-05-01 00:05:20 +0000 |
| commit | edab07d09f1dcee58395602054ffb1cd03490dd8 (patch) | |
| tree | ccd59a656aa921946259f4967dde24f9670cb040 /src/cmd/dist/build.go | |
| parent | fd6c556dc82253722a7f7b9f554a1892b0ede36e (diff) | |
| download | go-edab07d09f1dcee58395602054ffb1cd03490dd8.tar.xz | |
cmd/dist: support dist tool for loong64
Contributors to the loong64 port are:
Weining Lu <luweining@loongson.cn>
Lei Wang <wanglei@loongson.cn>
Lingqin Gong <gonglingqin@loongson.cn>
Xiaolin Zhao <zhaoxiaolin@loongson.cn>
Meidan Li <limeidan@loongson.cn>
Xiaojuan Zhai <zhaixiaojuan@loongson.cn>
Qiyuan Pu <puqiyuan@loongson.cn>
Guoqi Chen <chenguoqi@loongson.cn>
This port has been updated to Go 1.15.6:
https://github.com/loongson/go
Updates #46229
Change-Id: I61dca43680d8e5bd3198a38577450a53f405a987
Reviewed-on: https://go-review.googlesource.com/c/go/+/342307
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Auto-Submit: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/cmd/dist/build.go')
| -rw-r--r-- | src/cmd/dist/build.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cmd/dist/build.go b/src/cmd/dist/build.go index bbaf595421..c19714c456 100644 --- a/src/cmd/dist/build.go +++ b/src/cmd/dist/build.go @@ -64,6 +64,7 @@ var okgoarch = []string{ "amd64", "arm", "arm64", + "loong64", "mips", "mipsle", "mips64", @@ -1554,6 +1555,7 @@ var cgoEnabled = map[string]bool{ "linux/amd64": true, "linux/arm": true, "linux/arm64": true, + "linux/loong64": true, "linux/ppc64": false, "linux/ppc64le": true, "linux/mips": true, @@ -1593,6 +1595,7 @@ var cgoEnabled = map[string]bool{ // filtered out of cgoEnabled for 'dist list'. See golang.org/issue/28944 var incomplete = map[string]bool{ "linux/sparc64": true, + "linux/loong64": true, } // List of platforms which are first class ports. See golang.org/issue/38874. |
