summaryrefslogtreecommitdiffstats
path: root/recipes-devtools
diff options
context:
space:
mode:
authorJason Wessel <jason.wessel@windriver.com>2016-01-19 16:11:48 -0600
committerBruce Ashfield <bruce.ashfield@windriver.com>2016-01-26 15:16:28 -0500
commitae6c7fb2d3429781677095ab7eb69da325e714ac (patch)
tree699ff679722c5ecba46ff2fca52c59cf9df0ed9f /recipes-devtools
parent9377e68bcd4bd4dd686807f43adac90dfed20da7 (diff)
downloadmeta-virtualization-ae6c7fb2d3429781677095ab7eb69da325e714ac.tar.gz
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>
Diffstat (limited to 'recipes-devtools')
-rw-r--r--recipes-devtools/go-cross/go-cross-1.3_1.3.bb2
1 files changed, 1 insertions, 1 deletions
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 = "\
5HOMEPAGE = "https://golang.org/" 5HOMEPAGE = "https://golang.org/"
6LICENSE = "BSD-3-Clause" 6LICENSE = "BSD-3-Clause"
7 7
8DEPENDS = "virtual/${TARGET_PREFIX}gcc" 8DEPENDS = "virtual/${TARGET_PREFIX}gcc libgcc"
9 9
10SRC_URI = "http://golang.org/dl/go${PV}.src.tar.gz" 10SRC_URI = "http://golang.org/dl/go${PV}.src.tar.gz"
11 11