40fccbe35b
OBS-URL: https://build.opensuse.org/request/show/175683 OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/go?expand=0&rev=165
20 lines
908 B
Diff
20 lines
908 B
Diff
diff --git a/src/make.bash b/src/make.bash
|
|
index 8d0f6eb..905ec04 100755
|
|
--- a/src/make.bash
|
|
+++ b/src/make.bash
|
|
@@ -140,12 +140,12 @@ echo
|
|
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
|