From ac3028f0a9950890f850306fdde03b272dc6baee Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 20 Dec 2011 17:00:52 -0500 Subject: [PATCH] build: fix build Missing file during last CL. TBR=r CC=golang-dev https://golang.org/cl/5505047 --- src/buildinfo.sh | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/buildinfo.sh diff --git a/src/buildinfo.sh b/src/buildinfo.sh new file mode 100644 index 0000000000..4725b39720 --- /dev/null +++ b/src/buildinfo.sh @@ -0,0 +1,40 @@ +# Copyright 2011 The Go Authors. All rights reserved. +# Use of this source code is governed by a BSD-style +# license that can be found in the LICENSE file. + +# This file is included by shell scripts that need to know the +# full list of architectures, operating systems, and combinations +# that Go runs on. + +GOARCHES=" + 386 + amd64 + arm +" + +GOOSES=" + darwin + freebsd + linux + netbsd + openbsd + plan9 + windows +" + +GOOSARCHES=" + darwin_386 + darwin_amd64 + freebsd_386 + freebsd_amd64 + linux_386 + linux_amd64 + linux_arm + netbsd_386 + netbsd_amd64 + openbsd_386 + openbsd_amd64 + plan9_386 + windows_386 + windows_amd64 +" -- 2.50.0