diff options
| author | Shenghou Ma <minux@golang.org> | 2015-11-12 15:43:18 -0500 |
|---|---|---|
| committer | Minux Ma <minux@golang.org> | 2015-11-12 20:59:56 +0000 |
| commit | e8b4c5bfe9405c573c63337b739a135c06edf7d9 (patch) | |
| tree | 1fc5e595cb3550e734f998d038238133fff26161 /src/runtime/internal/sys | |
| parent | 7c38ae084eb6d17b3b9270678cc32cc12b26b95b (diff) | |
| download | go-e8b4c5bfe9405c573c63337b739a135c06edf7d9.tar.xz | |
runtime, runtime/internal/sys: fix build for linux/{mips64,mips64le}
Change-Id: I37bac9680efdfd797ca5dca90bd9a9e1001bfb68
Reviewed-on: https://go-review.googlesource.com/16874
Reviewed-by: Michael Matloob <matloob@golang.org>
Diffstat (limited to 'src/runtime/internal/sys')
| -rw-r--r-- | src/runtime/internal/sys/zgoarch_mips64.go | 26 | ||||
| -rw-r--r-- | src/runtime/internal/sys/zgoarch_mips64le.go | 26 |
2 files changed, 52 insertions, 0 deletions
diff --git a/src/runtime/internal/sys/zgoarch_mips64.go b/src/runtime/internal/sys/zgoarch_mips64.go new file mode 100644 index 0000000000..b4a97d6da9 --- /dev/null +++ b/src/runtime/internal/sys/zgoarch_mips64.go @@ -0,0 +1,26 @@ +// generated by gengoos.go using 'go generate' + +package sys + +const TheGoarch = `mips64` + +const Goarch386 = 0 +const GoarchAmd64 = 0 +const GoarchAmd64p32 = 0 +const GoarchArm = 0 +const GoarchArmbe = 0 +const GoarchArm64 = 0 +const GoarchArm64be = 0 +const GoarchPpc64 = 0 +const GoarchPpc64le = 0 +const GoarchMips = 0 +const GoarchMipsle = 0 +const GoarchMips64 = 1 +const GoarchMips64le = 0 +const GoarchMips64p32 = 0 +const GoarchMips64p32le = 0 +const GoarchPpc = 0 +const GoarchS390 = 0 +const GoarchS390x = 0 +const GoarchSparc = 0 +const GoarchSparc64 = 0 diff --git a/src/runtime/internal/sys/zgoarch_mips64le.go b/src/runtime/internal/sys/zgoarch_mips64le.go new file mode 100644 index 0000000000..3328a35bd2 --- /dev/null +++ b/src/runtime/internal/sys/zgoarch_mips64le.go @@ -0,0 +1,26 @@ +// generated by gengoos.go using 'go generate' + +package sys + +const TheGoarch = `mips64le` + +const Goarch386 = 0 +const GoarchAmd64 = 0 +const GoarchAmd64p32 = 0 +const GoarchArm = 0 +const GoarchArmbe = 0 +const GoarchArm64 = 0 +const GoarchArm64be = 0 +const GoarchPpc64 = 0 +const GoarchPpc64le = 0 +const GoarchMips = 0 +const GoarchMipsle = 0 +const GoarchMips64 = 0 +const GoarchMips64le = 1 +const GoarchMips64p32 = 0 +const GoarchMips64p32le = 0 +const GoarchPpc = 0 +const GoarchS390 = 0 +const GoarchS390x = 0 +const GoarchSparc = 0 +const GoarchSparc64 = 0 |
