X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/fc77604c47c6b8d57153349260a7a7e5b0d833b6..2e111efe5a8d5092a4a6d391096ff6712cf6f162:/Makefile diff --git a/Makefile b/Makefile index c036e10c..f3aff262 100644 --- a/Makefile +++ b/Makefile @@ -3,12 +3,13 @@ # This file is released under the BSD license, see the COPYING file uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') +OPTIMIZATION?=-O2 ifeq ($(uname_S),SunOS) - CFLAGS?= -std=c99 -pedantic -O2 -Wall -W -D__EXTENSIONS__ -D_XPG6 - CCLINK?= -ldl -lnsl -lsocket -lm + CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6 + CCLINK?= -ldl -lnsl -lsocket -lm -lpthread else - CFLAGS?= -std=c99 -pedantic -O2 -Wall -W $(ARCH) $(PROF) - CCLINK?= -lm + CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF) + CCLINK?= -lm -pthread endif CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF) DEBUG?= -g -rdynamic -ggdb @@ -83,5 +84,8 @@ gprof: gcov: make PROF="-fprofile-arcs -ftest-coverage" +noopt: + make OPTIMIZATION="" + 32bitgprof: make PROF="-pg" ARCH="-arch i386"