23 lines
1.1 KiB
Diff
23 lines
1.1 KiB
Diff
![]() |
From a585b7bacb83a6dfbafd48ebc9e664d671661bfc Mon Sep 17 00:00:00 2001
|
||
|
From: Tad <tad@spotco.us>
|
||
|
Date: Tue, 26 May 2015 13:18:34 -0400
|
||
|
Subject: [PATCH] Optimizations
|
||
|
|
||
|
---
|
||
|
arch/arm/Makefile | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/arch/arm/Makefile b/arch/arm/Makefile
|
||
|
index e620786..0dd6592 100644
|
||
|
--- a/arch/arm/Makefile
|
||
|
+++ b/arch/arm/Makefile
|
||
|
@@ -57,7 +57,7 @@ comma = ,
|
||
|
# Note that GCC does not numerically define an architecture version
|
||
|
# macro, but instead defines a whole series of macros which makes
|
||
|
# testing for a specific architecture or later rather impossible.
|
||
|
-arch-$(CONFIG_CPU_32v7) :=-D__LINUX_ARM_ARCH__=7 $(call cc-option,-march=armv7-a,-march=armv5t -Wa$(comma)-march=armv7-a)
|
||
|
+arch-$(CONFIG_CPU_32v7) :=-D__LINUX_ARM_ARCH__=7 $(call cc-option,-march=armv7-a -mtune=cortex-a15 -Wa$(comma)-march=armv7-a)
|
||
|
arch-$(CONFIG_CPU_32v6) :=-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6,-march=armv5t -Wa$(comma)-march=armv6)
|
||
|
# Only override the compiler option if ARMv6. The ARMv6K extensions are
|
||
|
# always available in ARMv7
|