2014-05-21 21:30:02 +00:00
|
|
|
Index: go/src/make.bash
|
|
|
|
===================================================================
|
|
|
|
--- go.orig/src/make.bash
|
|
|
|
+++ go/src/make.bash
|
|
|
|
@@ -161,12 +161,12 @@ if [ "$GOHOSTARCH" != "$GOARCH" -o "$GOH
|
|
|
|
# CC_FOR_TARGET is recorded as the default compiler for the go tool. When building for the host, however,
|
|
|
|
# use the host compiler, CC, from `cmd/dist/dist env` instead.
|
|
|
|
CC=$CC GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH \
|
2013-05-24 01:22:57 +00:00
|
|
|
- "$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."
|
2014-05-21 21:30:02 +00:00
|
|
|
-CC=$CC_FOR_TARGET "$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std
|
|
|
|
+CC=$CC_FOR_TARGET "$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -ccflags "$GO_CCFLAGS" -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v -x std
|
2013-05-24 01:22:57 +00:00
|
|
|
echo
|
|
|
|
|
|
|
|
rm -f "$GOTOOLDIR"/go_bootstrap
|