Fix for 'make 32bit'

This commit is contained in:
antirez 2009-10-27 18:44:17 +01:00
parent 0bc1b2f651
commit 5b19e727c7
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ ifeq ($(uname_S),SunOS)
CFLAGS?= -std=c99 -pedantic -O2 -Wall -W -D__EXTENSIONS__ -D_XPG6
CCLINK?= -ldl -lnsl -lsocket -lm
else
CFLAGS?= -std=c99 -pedantic -O2 -Wall -W
CFLAGS?= -std=c99 -pedantic -O2 -Wall -W $(ARCH)
CCLINK?= -lm
endif
CCOPT= $(CFLAGS) $(CCLINK) $(ARCH)