From f15232f57e0e25d13afabca212e6a7417997e7ae Mon Sep 17 00:00:00 2001 From: David S. Miller Date: Fri, 20 Feb 2009 17:31:44 -0800 Subject: [PATCH 1/5] Makefile: Use "-mtune=ultrasparc3 -mv8plus" on Linux/Sparc. Signed-off-by: David S. Miller --- Makefile | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index d698761..6d702d4 100644 --- a/Makefile +++ b/Makefile @@ -281,6 +281,9 @@ ifeq ($(PLATFORM),linux) BASE_CFLAGS += -maltivec HAVE_VM_COMPILED=true endif + ifeq ($(ARCH),sparc) + OPTIMIZE += -mtune=ultrasparc3 -mv8plus + endif endif endif -- 1.6.1.2.350.g88cc