diff options
Diffstat (limited to 'golang-1.1-verbose-build.patch')
-rw-r--r-- | golang-1.1-verbose-build.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/golang-1.1-verbose-build.patch b/golang-1.1-verbose-build.patch new file mode 100644 index 0000000..d8e8052 --- /dev/null +++ b/golang-1.1-verbose-build.patch @@ -0,0 +1,27 @@ +diff -ur go~/src/make.bash go/src/make.bash +--- go~/src/make.bash 2013-05-13 16:07:18.000000000 -0400 ++++ go/src/make.bash 2013-05-23 21:20:56.804544307 -0400 +@@ -135,7 +135,7 @@ + if [ "$1" = "--no-clean" ]; then + buildall="" + fi +-./cmd/dist/dist bootstrap $buildall -v # builds go_bootstrap ++./cmd/dist/dist bootstrap $buildall -vv # builds go_bootstrap + # Delay move of dist tool to now, because bootstrap may clear tool directory. + mv cmd/dist/dist "$GOTOOLDIR"/dist + "$GOTOOLDIR"/go_bootstrap clean -i std +@@ -144,12 +144,12 @@ + if [ "$GOHOSTARCH" != "$GOARCH" -o "$GOHOSTOS" != "$GOOS" ]; then + echo "# Building packages and commands for host, $GOHOSTOS/$GOHOSTARCH." + GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH \ +- "$GOTOOLDIR"/go_bootstrap install -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std ++ "$GOTOOLDIR"/go_bootstrap install -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v -x std + echo + fi + + echo "# Building packages and commands for $GOOS/$GOARCH." +-"$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std ++"$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v -x std + echo + + rm -f "$GOTOOLDIR"/go_bootstrap |