X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/c4cd5f393ced23cb298c52eaa5ed67569d3f8d0d..913e9d6bcacfa28ace3b7ee1c75f8ec4e146974b:/Makefile diff --git a/Makefile b/Makefile index fda703e1..4fe428c4 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,8 @@ # This file is released under the BSD license, see the COPYING file DEBUG?= -g -rdynamic -ggdb -CFLAGS?= -std=c99 -pedantic -O0 -Wall -W -DSDS_ABORT_ON_OOM -CCOPT= $(CFLAGS) +CFLAGS?= -std=c99 -O2 -pedantic -Wall -W +CCOPT= $(CFLAGS) $(ARCH) OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o BENCHOBJ = ae.o anet.o benchmark.o sds.o adlist.o zmalloc.o @@ -61,3 +61,6 @@ bench: log: git log '--pretty=format:%ad %s' --date=short > Changelog + +32bit: + make ARCH="-arch i386"