From a432eda094bfaf956fce38884faa9413e51237f0 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Thu, 19 Jul 2012 12:03:13 -0700 Subject: [PATCH] tune-ppce50*.inc: only use the -t args for the pro toolchains Signed-off-by: Christopher Larson --- conf/machine/include/tune-ppce500mc.inc | 4 +++- conf/machine/include/tune-ppce500v2.inc | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/conf/machine/include/tune-ppce500mc.inc b/conf/machine/include/tune-ppce500mc.inc index 1242bfc..94668e3 100644 --- a/conf/machine/include/tune-ppce500mc.inc +++ b/conf/machine/include/tune-ppce500mc.inc @@ -3,7 +3,9 @@ DEFAULTTUNE ?= "ppce500mc" require conf/machine/include/powerpc/arch-powerpc.inc TUNEVALID[ppce500mc] = "Enable ppce500mc specific processor optimizations" -TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "ppce500mc", "-te500mc", "", d)}" + +PPCE500MC_CCARG = "${@'-te500mc' if CSL_IS_PRO == '1' else '-mcpu=e500mc'}" +TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "ppce500mc", PPCE500MC_CCARG, "", d)}" AVAILTUNES += "ppce500mc" TUNE_FEATURES_tune-ppce500mc = "m32 fpu-hard ppce500mc" diff --git a/conf/machine/include/tune-ppce500v2.inc b/conf/machine/include/tune-ppce500v2.inc index 695da0c..f386c97 100644 --- a/conf/machine/include/tune-ppce500v2.inc +++ b/conf/machine/include/tune-ppce500v2.inc @@ -3,7 +3,9 @@ DEFAULTTUNE ?= "ppce500v2" 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)}" + +PPCE500V2_CCARG = "${@'-te500v2' if CSL_IS_PRO == '1' else '-mcpu=8548 -mabi=spe -mspe -mfloat-gprs=double'}" +TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "ppce500v2", PPCE500V2_CCARG, "", d)}" # Note that SPE is implied by the ppce500v2 feature TARGET_FPU .= "${@bb.utils.contains("TUNE_FEATURES", "ppce500v2", "ppc-efd", "", d)}"