diff options
author | Nicolas Pitre <nico@cam.org> | 2008-12-04 06:03:57 (GMT) |
---|---|---|
committer | Nicolas Pitre <nico@cam.org> | 2008-12-11 21:39:09 (GMT) |
commit | b71b9effb5c6aad49682f963291b06018b44ed38 (patch) | |
tree | ef17d9649215c96d6b8cde709e1a2366c2e83362 | |
parent | 37787e449b39202afae13b6c47505ae9e977cae3 (diff) | |
download | linux-fsl-qoriq-b71b9effb5c6aad49682f963291b06018b44ed38.tar.xz |
[ARM] Feroceon: pass proper -mtune argument to gcc
Compilation for the Feroceon core should use -mtune=marvell-f. This is
available in Code Sourcery's 2008Q3 release at the moment. Otherwise
fall back to -mtune-=xscale.
Signed-off-by: Nicolas Pitre <nico@marvell.com>
-rw-r--r-- | arch/arm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index bd6e281..384f6b1 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile @@ -76,6 +76,7 @@ tune-$(CONFIG_CPU_SA110) :=-mtune=strongarm110 tune-$(CONFIG_CPU_SA1100) :=-mtune=strongarm1100 tune-$(CONFIG_CPU_XSCALE) :=$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale tune-$(CONFIG_CPU_XSC3) :=$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale +tune-$(CONFIG_CPU_FEROCEON) :=$(call cc-option,-mtune=marvell-f,-mtune=xscale) tune-$(CONFIG_CPU_V6) :=$(call cc-option,-mtune=arm1136j-s,-mtune=strongarm) ifeq ($(CONFIG_AEABI),y) |