From 913e81522c0c062a5e4d7b4b51904625334ca3ff Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Mon, 2 Mar 2009 17:29:26 +0000 Subject: [PATCH] Makefile: Use "-mtune=ultrasparc3 -mv8plus" on Linux/Sparc. Signed-off-by: David S. Miller --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index d698761d..6d702d44 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