blob: 9c0ea63974fb4c78ad5f8530fd9a5b45de22d7cf [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001From a46a144ac883898d9cedf7a0b13aec6d10116125 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 29 Sep 2017 23:11:53 -0700
4Subject: [PATCH] arm: Do not set a fallback march and mtune
5
6In OE we pass the options explicitly, there is
7no need to set it inside the makefiles, we will
8need to compute values for CPU_ARCH and CPU_TUNE
9which is a bit harder in OE
10
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13Upstream-Status: Pending
14
15 usr/klibc/arch/arm/MCONFIG | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/usr/klibc/arch/arm/MCONFIG b/usr/klibc/arch/arm/MCONFIG
19index 53bc1dc3..857e2f2d 100644
20--- a/usr/klibc/arch/arm/MCONFIG
21+++ b/usr/klibc/arch/arm/MCONFIG
22@@ -10,7 +10,7 @@
23 CPU_ARCH ?= armv4
24 CPU_TUNE ?= strongarm
25
26-KLIBCOPTFLAGS += -Os -march=$(CPU_ARCH) -mtune=$(CPU_TUNE)
27+KLIBCOPTFLAGS += -Os
28 KLIBCBITSIZE = 32
29 KLIBCREQFLAGS += -fno-exceptions
30 KLIBCSTRIPFLAGS += -R .ARM.exidx
31--
322.14.2
33