From 4f93b213f2d3393fbb0b7ca200988f475e6cef83 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Thu, 19 Feb 2015 19:54:14 +0100 Subject: cleanup FPU support for ARM targets. --- target/config/Config.in.fpu.default | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 target/config/Config.in.fpu.default (limited to 'target/config/Config.in.fpu.default') diff --git a/target/config/Config.in.fpu.default b/target/config/Config.in.fpu.default new file mode 100644 index 000000000..095b2cb5f --- /dev/null +++ b/target/config/Config.in.fpu.default @@ -0,0 +1,23 @@ +# 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 + -- cgit v1.2.3