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 <jason.wessel@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
This commit is contained in:
Jason Wessel 2016-10-18 14:51:27 -05:00 committed by Bruce Ashfield
parent c3d8676a0c
commit d55a579938

View File

@ -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"