]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
ARM: move -march=* and -mtune= options to arch/arm/Makefile
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Thu, 26 Feb 2015 17:40:33 +0000 (02:40 +0900)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 1 Sep 2015 12:34:19 +0000 (14:34 +0200)
commit46ce9799d6a3964b8ef7030de7b88ec748deba7e
treef562fc0ecccc92a30af00d79669a776ff83ed04d
parent4d329be28eedee6ba3be5d87792c4352e10ac7a1
ARM: move -march=* and -mtune= options to arch/arm/Makefile

My main motivations for this commit are:

[1] Follow the arch/arm/Makefile style of Linux Kernel

[2] Maintain compiler options systematically
  Currently, we give -march=* and -mtune=* options inconsistently:
  Only some of the CPUs pass -march=* and -mtune=* options.
  By collecting such options into the single place arch/arm/Makefile
  we can tell which options are missing at a glance.

[3] Prepare for deprecating arch/*/cpu/*/config.mk

Note:
  This commit just moves the compiler options so as not to change
  the behavior at all.  It does not care about the correctness of
  the given options.  Fox example, "-march=armv5te" might be better
  than "-march=armv4" for ARM946EJS, but it is beyond the scope this
  commit.  Also, filling the missing -march=* and -tune=* is left
  to follow-up patches.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Marek Vasut <marex@denx.de>
Acked-by: Stefan Roese <sr@denx.de>
arch/arm/Makefile
arch/arm/cpu/arm1136/config.mk [deleted file]
arch/arm/cpu/arm1176/config.mk [deleted file]
arch/arm/cpu/arm720t/config.mk [deleted file]
arch/arm/cpu/arm920t/config.mk [deleted file]
arch/arm/cpu/arm926ejs/config.mk [deleted file]
arch/arm/cpu/arm946es/config.mk [deleted file]
arch/arm/cpu/armv7/config.mk
arch/arm/cpu/armv8/config.mk
arch/arm/cpu/pxa/config.mk
arch/arm/cpu/sa1100/config.mk [deleted file]