go-cross-1.3: Fix missing dependency for cross compile

The go-cross-1.3 package depends on the libgcc to be installed for the
cross compiler else you will receive an error if this package builds
first like:

runtime/cgo
/opt/tmp/sysroots/x86_64-linux/usr/bin/arm-wrs-linux-gnueabi/../../libexec/arm-wrs-linux-gnueabi/gcc/arm-wrs-linux-gnueabi/4.9.1/ld: cannot find crtbeginS.o: No such file or directory
collect2: error: ld returned 1 exit status

Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
This commit is contained in:
Jason Wessel 2016-01-19 16:11:48 -06:00 committed by Bruce Ashfield
parent 9377e68bcd
commit ae6c7fb2d3

View File

@ -5,7 +5,7 @@ DESCRIPTION = "\
HOMEPAGE = "https://golang.org/"
LICENSE = "BSD-3-Clause"
DEPENDS = "virtual/${TARGET_PREFIX}gcc"
DEPENDS = "virtual/${TARGET_PREFIX}gcc libgcc"
SRC_URI = "http://golang.org/dl/go${PV}.src.tar.gz"