From 1f21d8825f98fd7a86fdcb10ee5e27bf2b2d8349 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Thu, 27 Jun 2013 16:35:53 -0700 Subject: [PATCH] tcmode: kill the TOOLCHAIN_HOST_TASK override This means we won't be able to build meta-toolchain with an external toolchain, but it does mean we don't screw up buildtools-tarball. If we need a functional meta-toolchain in the future, we can resurrect a superior implementation of this. Signed-off-by: Christopher Larson --- conf/distro/include/tcmode-external-sourcery.inc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/conf/distro/include/tcmode-external-sourcery.inc b/conf/distro/include/tcmode-external-sourcery.inc index 60c1195..ddffeef 100644 --- a/conf/distro/include/tcmode-external-sourcery.inc +++ b/conf/distro/include/tcmode-external-sourcery.inc @@ -5,7 +5,11 @@ EXTERNAL_TOOLCHAIN ?= "UNDEFINED" # Don't ship any toolchain binaries in the sdk for the time being -TOOLCHAIN_HOST_TASK ?= "nativesdk-packagegroup-sdk-host meta-environment-${TRANSLATED_TARGET_ARCH}" +# FIXME: find a way to do this just for the recipes which include those +# binaries. Potentially we could replace the packagegroup with an alternative +# version which includes nothing, or provide a bbclass which filters it out at +# RecipeParsed time. +#TOOLCHAIN_HOST_TASK ?= "nativesdk-packagegroup-sdk-host meta-environment-${TRANSLATED_TARGET_ARCH}" # Add the external toolchain to the sdk setup script PATH INHERIT += "toolchain-scripts-external"