From bb12450ff8e9b941780aa2e1cbcc8d55804b4922 Mon Sep 17 00:00:00 2001 From: Sevki Date: Mon, 19 Jun 2017 00:02:59 +0200 Subject: [PATCH] cmd/dist: add harvey to supported os list add harvey to okgoos var add harvey/amd64 to cgoEnabled as false Signed-off-by: Sevki --- src/cmd/dist/build.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cmd/dist/build.go b/src/cmd/dist/build.go index 76e42a4b6a..f8a6074ed0 100644 --- a/src/cmd/dist/build.go +++ b/src/cmd/dist/build.go @@ -78,6 +78,7 @@ var okgoos = []string{ "netbsd", "openbsd", "plan9", + "harvey", "windows", } @@ -1127,6 +1128,7 @@ var cgoEnabled = map[string]bool{ "plan9/386": false, "plan9/amd64": false, "plan9/arm": false, + "harvey/amd64": false, "solaris/amd64": true, "windows/386": true, "windows/amd64": true,