From d55a5799384ee0533e855bbec43704c1bd5e448f Mon Sep 17 00:00:00 2001 From: Jason Wessel Date: Tue, 18 Oct 2016 14:51:27 -0500 Subject: go-cross: Fix failure if building go-cross first If go-cross is built as the first package it will fail creating the target libraries used for cross-compilation because it requires libgcc. Signed-off-by: Jason Wessel Signed-off-by: Bruce Ashfield --- recipes-devtools/go-cross/go-cross.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipes-devtools') diff --git a/recipes-devtools/go-cross/go-cross.inc b/recipes-devtools/go-cross/go-cross.inc index 181f4aad..31749878 100644 --- a/recipes-devtools/go-cross/go-cross.inc +++ b/recipes-devtools/go-cross/go-cross.inc @@ -1,6 +1,7 @@ inherit cross -DEPENDS += "go-native" +# libgcc is required for the target specific libraries to build properly +DEPENDS += "go-native libgcc" # Prevent runstrip from running because you get errors when the host arch != target arch #INHIBIT_PACKAGE_STRIP = "1" -- cgit v1.2.3-54-g00ecf