Make ARCH overrideable on Windows

This commit is contained in:
Yamagi Burmeister 2013-12-31 09:57:07 +01:00
parent 950c31d4ee
commit 1e2e1021af
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ ifeq ($(OSTYPE), Windows)
# (amd64 works, but building an 64 bit executable
# is not that easy. Especially SDL and OpenAL are
# somewhat problematic)
ARCH := i386
ARCH ?= i386
else
# Some platforms call it "amd64" and some "x86_64"
ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/amd64/x86_64/)