From 0509727b0d8c4175f3d8957b2066916e889da383 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 21 Dec 2011 15:57:47 -0500 Subject: build: fixes for Windows * work around a linker/cgo bug * do not run deps.bash on Windows unless we need it (cuts a full minute off the build time) * add windows to the list of cgo-enabled targets The gopack problem is issue 2601. R=golang-dev, r, bradfitz CC=golang-dev https://golang.org/cl/5504062 --- src/make.bash | 1 + 1 file changed, 1 insertion(+) (limited to 'src/make.bash') diff --git a/src/make.bash b/src/make.bash index 000020ecd9..70beb47c0b 100755 --- a/src/make.bash +++ b/src/make.bash @@ -71,6 +71,7 @@ do fi done +$USE_GO_TOOL || ( cd "$GOROOT"/src/pkg; bash deps.bash # do this here so clean.bash will work in the pkg directory -- cgit v1.3-5-g9baa