From 476a87c63fe284faf4ea0a76f7b540845c5f6a52 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 22 Feb 2015 02:39:38 -0600 Subject: rework FPU/FLOAT support NEON is only an extension not the FPU hardware. So handle this in a better way. Remove the lower case symbols. --- target/config/Config.in.fpu.default | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) (limited to 'target/config/Config.in.fpu.default') diff --git a/target/config/Config.in.fpu.default b/target/config/Config.in.fpu.default index 095b2cb5f..0fd8f616c 100644 --- a/target/config/Config.in.fpu.default +++ b/target/config/Config.in.fpu.default @@ -1,23 +1,10 @@ # This file is part of the OpenADK project. OpenADK is copyrighted # material, please see the LICENCE file in the top-level directory. -config ADK_fpu_neon - bool - -config ADK_fpu_vfp - bool - -config ADK_fpu_vfp3 - bool - -config ADK_fpu_vfp4 - bool - config ADK_TARGET_FPU string depends on ADK_TARGET_ARCH_ARM - default "vfp" if ADK_fpu_vfp - default "vfp3" if ADK_fpu_vfp3 - default "vfp4" if ADK_fpu_vfp4 - default "neon" if ADK_fpu_neon - + default "vfp" if ADK_TARGET_CPU_WITH_FPU_VFP + default "vfp3" if ADK_TARGET_CPU_WITH_FPU_VFP3 + default "vfp4" if ADK_TARGET_CPU_WITH_FPU_VFP4 + default "neon" if ADK_TARGET_CPU_WITH_NEON -- cgit v1.2.3