[5/5] include tuning options into Makefile

2008-07-21 Thread Marvin
This patch finally adds mcpu/mtune options to the Makefile using the previous introduced tuning mechanism. Subject: [PATCH] include tuning options into Makefile --- arch/powerpc/Makefile | 41 +++-- 1 files changed, 23 insertions(+), 18 deletions(-) diff

Re: [5/5] include tuning options into Makefile

2008-07-21 Thread Arnd Bergmann
On Monday 21 July 2008, Marvin wrote: +# optimize for specific cpu +ifeq ($(CONFIG_TUNE_RS64),y) +    KBUILD_CFLAGS += $(call cc-option,-mcpu=rs64) +else ifeq ($(CONFIG_TUNE_POWER3),y) +    KBUILD_CFLAGS += $(call cc-option,-mcpu=power3) +else ifeq ($(CONFIG_TUNE_POWER4),y) +