summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-24 16:33:23 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-24 16:33:23 +0000
commit230d2519c778778f0a6e9b39d2157963ae8ab798 (patch)
treeeb797c39fd8fb0366c4f6676c12d88fcc947d85b /Makefile
parent0c584734dc8d4feb5390938671f6f88d9d87b39c (diff)
downloadhercules-230d2519c778778f0a6e9b39d2157963ae8ab798.tar.gz
hercules-230d2519c778778f0a6e9b39d2157963ae8ab798.tar.bz2
hercules-230d2519c778778f0a6e9b39d2157963ae8ab798.tar.xz
hercules-230d2519c778778f0a6e9b39d2157963ae8ab798.zip
Added Krade's makefile fix for 64bit compilers
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9910 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d8a3b2d89..0dff88c72 100644
--- a/Makefile
+++ b/Makefile
@@ -42,6 +42,7 @@ OPT += -Wall -Wno-sign-compare
# LIBS += -L/usr/local/lib -lpcre
PLATFORM = $(shell uname)
+ARCH = $(shell uname -m)
ifeq ($(findstring Linux,$(PLATFORM)), Linux)
LIBS += -ldl
@@ -73,6 +74,10 @@ ifeq ($(findstring CYGWIN,$(PLATFORM)), CYGWIN)
endif
endif
+ifeq ($(findstring x86_64,$(ARCH)), x86_64)
+ OPT += -m32
+endif
+
CFLAGS = $(OPT) -I../common $(OS_TYPE)
ifdef SQLFLAG