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. --- toolchain/gcc/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'toolchain/gcc/Makefile') diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index eecf59968..d6f7abd62 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -143,6 +143,10 @@ ifeq ($(ADK_CPU_CORTEX_M3),y) GCC_CONFOPTS+= --with-cpu=cortex-m3 --with-mode=thumb endif +ifeq ($(ADK_CPU_CORTEX_M4),y) +GCC_CONFOPTS+= --with-cpu=cortex-m4 --with-mode=thumb +endif + ifeq ($(ADK_CPU_CORTEX_A7),y) GCC_CONFOPTS+= --with-cpu=cortex-a7 endif @@ -151,6 +155,10 @@ ifeq ($(ADK_CPU_CORTEX_A9),y) GCC_CONFOPTS+= --with-cpu=cortex-a9 endif +ifeq ($(ADK_CPU_XSCALE),y) +GCC_CONFOPTS+= --with-cpu=xscale +endif + ifeq ($(ADK_CPU_SPARC_V8),y) GCC_CONFOPTS+= --with-cpu=v8 endif -- cgit v1.2.3