changed default optimization flag for ARM from -O2 to -O3
authorwernsaar <wernsaar@googlemail.com>
Sun, 24 Nov 2013 12:22:49 +0000 (13:22 +0100)
committerwernsaar <wernsaar@googlemail.com>
Sun, 24 Nov 2013 12:22:49 +0000 (13:22 +0100)
Makefile.system

index e5358f6..0f5e9c6 100644 (file)
@@ -830,8 +830,12 @@ COMMON_OPT += -g
 endif
 
 ifndef COMMON_OPT
+ifeq ($(ARCH), arm)
+COMMON_OPT = -O3
+else
 COMMON_OPT = -O2
 endif
+endif
 
 
 override CFLAGS     += $(COMMON_OPT) $(CCOMMON_OPT) -I$(TOPDIR)
@@ -929,6 +933,10 @@ export HAVE_SSE4_2
 export HAVE_SSE4A
 export HAVE_SSE5
 export HAVE_AVX
+export HAVE_VFP
+export HAVE_VFPV3
+export HAVE_VFPV4
+export HAVE_NEON
 export KERNELDIR
 export FUNCTION_PROFILE
 export TARGET_CORE