From: Steve Langasek Date: Thu, 12 Aug 2010 22:57:37 +0100 Subject: [PATCH] Fix build and resulting binary on alpha [Patch adjusted for current ioquake3 -smcv] Origin: vendor Bug-Debian: http://bugs.debian.org/410555 Forwarded: no --- Makefile | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 394c139..1dd0235 100644 --- a/Makefile +++ b/Makefile @@ -241,8 +241,8 @@ MKDIR=mkdir ifeq ($(PLATFORM),linux) - ifeq ($(ARCH),alpha) - ARCH=axp + ifeq ($(ARCH),axp) + ARCH=alpha else ifeq ($(ARCH),x86_64) LIB=lib64 @@ -310,6 +310,11 @@ ifeq ($(PLATFORM),linux) OPTIMIZEVM += -mtune=ultrasparc3 -mv8plus HAVE_VM_COMPILED=true endif + ifeq ($(ARCH),alpha) + # According to http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=410555 + # -ffast-math will cause the client to die with SIGFPE on Alpha + OPTIMIZE = $(OPTIMIZEVM) + endif endif endif --