mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 21:32:12 +02:00
* This is converging the recipes for go from meta-virtualization and oe-meta-go * Add recipes for go 1.7 * go.bbclass is added to ease out writing recipes for go packages * go-examples: Add an example, helloworld written in go This should serve as temlate for writing go recipes * Disable for musl, at least for now * Disable for x32/ppc32 which is not supported (From OE-Core rev: 78615e9260fb5d6569de4883521b049717fa4340) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
729 B
Diff
18 lines
729 B
Diff
Put Quotes around CC_FOR_TARGET since it can be mutliple words e.g. in OE
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
Upstream-Status: Pending
|
|
Index: go/src/make.bash
|
|
===================================================================
|
|
--- go.orig/src/make.bash 2015-07-29 13:28:11.334031696 -0700
|
|
+++ go/src/make.bash 2015-07-29 13:36:55.814465630 -0700
|
|
@@ -158,7 +158,7 @@
|
|
fi
|
|
|
|
echo "##### Building packages and commands for $GOOS/$GOARCH."
|
|
-CC=$CC_FOR_TARGET "$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std cmd
|
|
+CC="$CC_FOR_TARGET" "$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std cmd
|
|
echo
|
|
|
|
rm -f "$GOTOOLDIR"/go_bootstrap
|