1
0
Fork 0

Added a makefile switch for 32bit-on-64bit compilation, addm32

git-svn-id: http://mc-server.googlecode.com/svn/trunk@1378 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com 2013-04-10 07:42:39 +00:00
parent cec6bba19f
commit 995c8d97e6
1 changed files with 10 additions and 0 deletions

View File

@ -83,6 +83,16 @@ endif
################
# 32-bit build override in 64-bit build environments
# - so that BearBin doesn't need to modify his makefile after each makefile change :)
################
ifeq ($(addm32),1)
CC_OPTIONS += -m32
CXX_OPTIONS += -m32
LNK_OPTIONS += -m32
endif
###################################################