Commit 5b19e727 authored by antirez's avatar antirez
Browse files

Fix for 'make 32bit'

parent 0bc1b2f6
...@@ -7,7 +7,7 @@ ifeq ($(uname_S),SunOS) ...@@ -7,7 +7,7 @@ ifeq ($(uname_S),SunOS)
CFLAGS?= -std=c99 -pedantic -O2 -Wall -W -D__EXTENSIONS__ -D_XPG6 CFLAGS?= -std=c99 -pedantic -O2 -Wall -W -D__EXTENSIONS__ -D_XPG6
CCLINK?= -ldl -lnsl -lsocket -lm CCLINK?= -ldl -lnsl -lsocket -lm
else else
CFLAGS?= -std=c99 -pedantic -O2 -Wall -W CFLAGS?= -std=c99 -pedantic -O2 -Wall -W $(ARCH)
CCLINK?= -lm CCLINK?= -lm
endif endif
CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) CCOPT= $(CFLAGS) $(CCLINK) $(ARCH)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment