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 <[email protected]> --- 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 775e28f..dd57e56 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" -- 1.7.9.5 -- _______________________________________________ meta-virtualization mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-virtualization
