From 87530a791968ecc3f9c0749eaf5f6f7d1346e8cc Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Wed, 18 Jul 2012 19:32:14 -0700 Subject: [PATCH] tune-ppce500v2: resurrect TARGET_FPU since khem fixed e500v2.inc Signed-off-by: Christopher Larson --- conf/machine/include/tune-ppce500v2.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conf/machine/include/tune-ppce500v2.inc b/conf/machine/include/tune-ppce500v2.inc index 0fd0efe..695da0c 100644 --- a/conf/machine/include/tune-ppce500v2.inc +++ b/conf/machine/include/tune-ppce500v2.inc @@ -5,6 +5,9 @@ require conf/machine/include/powerpc/arch-powerpc.inc TUNEVALID[ppce500v2] = "Enable ppce500v2 specific processor optimizations" TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "ppce500v2", "-te500v2", "", d)}" +# Note that SPE is implied by the ppce500v2 feature +TARGET_FPU .= "${@bb.utils.contains("TUNE_FEATURES", "ppce500v2", "ppc-efd", "", d)}" + # spe is defined potentially in two places, so we want to be sure it will # only write spe once to the ABIEXTENSIONS field. SPEABIEXTENSION = "${@bb.utils.contains("TUNE_FEATURES", "ppce500v2", "spe", "", d)}"