From 6bf7460068996ad2defdd0b7e36dddde8485e684 Mon Sep 17 00:00:00 2001 From: David S. Miller Date: Tue, 24 Feb 2009 03:24:42 -0800 Subject: [PATCH 5/5] Makefile: Enable new sparc JIT on Linux. Signed-off-by: David S. Miller --- Makefile | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 6d702d4..2bbd5b6 100644 --- a/Makefile +++ b/Makefile @@ -283,6 +283,7 @@ ifeq ($(PLATFORM),linux) endif ifeq ($(ARCH),sparc) OPTIMIZE += -mtune=ultrasparc3 -mv8plus + HAVE_VM_COMPILED=true endif endif endif @@ -1447,6 +1448,9 @@ ifeq ($(HAVE_VM_COMPILED),true) ifeq ($(ARCH),ppc64) Q3OBJ += $(B)/client/vm_powerpc.o $(B)/client/vm_powerpc_asm.o endif + ifeq ($(ARCH),sparc) + Q3OBJ += $(B)/client/vm_sparc.o + endif endif ifeq ($(PLATFORM),mingw32) @@ -1593,6 +1597,9 @@ ifeq ($(HAVE_VM_COMPILED),true) ifeq ($(ARCH),ppc64) Q3DOBJ += $(B)/ded/vm_powerpc.o $(B)/ded/vm_powerpc_asm.o endif + ifeq ($(ARCH),sparc) + Q3DOBJ += $(B)/ded/vm_sparc.o + endif endif ifeq ($(PLATFORM),mingw32) -- 1.6.1.2.350.g88cc