From db6bd00787182fb28a76d8023d656e498da5d404 Mon Sep 17 00:00:00 2001 From: Jonas Karlman Date: Mon, 9 Feb 2015 09:42:34 +0100 Subject: [PATCH] GCC 4.9 has support for armv7ve --- config/arch.arm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/config/arch.arm b/config/arch.arm index d7dc4a79dd..15a6727272 100644 --- a/config/arch.arm +++ b/config/arch.arm @@ -32,12 +32,9 @@ SIMD_SUPPORT="no" ;; cortex-a7|cortex-a15) - TARGET_SUBARCH=armv7-a + TARGET_SUBARCH=armv7ve TARGET_ABI=eabi - # It's not currently possible to specify the exact architecture variant (-mcpu) - # that A7/A15 supports in the command line so use -mtune here. - # see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57907 - TARGET_EXTRA_FLAGS="-mtune=$TARGET_CPU" + TARGET_EXTRA_FLAGS="-mcpu=$TARGET_CPU" TARGET_FPU_FLAGS="-mfloat-abi=$TARGET_FLOAT -mfpu=$TARGET_FPU" SIMD_SUPPORT="yes" ;;