From ae6c7fb2d3429781677095ab7eb69da325e714ac Mon Sep 17 00:00:00 2001 From: Jason Wessel Date: Tue, 19 Jan 2016 16:11:48 -0600 Subject: 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 Signed-off-by: Bruce Ashfield --- recipes-devtools/go-cross/go-cross-1.3_1.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-devtools/go-cross/go-cross-1.3_1.3.bb b/recipes-devtools/go-cross/go-cross-1.3_1.3.bb index 775e28f3..dd57e561 100644 --- a/recipes-devtools/go-cross/go-cross-1.3_1.3.bb +++ b/recipes-devtools/go-cross/go-cross-1.3_1.3.bb @@ -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" -- cgit v1.2.3-54-g00ecf