kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 090e2cc6a27dddcd0a2989eb874cd5c3f9859ebb
parent fcc2010117769cc622f3a38fc3d6cec811edaef2
Author: Joris Vink <joris@coders.se>
Date:   Sat, 13 Feb 2016 14:21:09 +0100

Debug builds imply NOOPT

Diffstat:
Makefile | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -19,6 +19,7 @@ LDFLAGS=-rdynamic -lssl -lcrypto ifneq ("$(DEBUG)", "") CFLAGS+=-DKORE_DEBUG -g + NOOPT=1 endif ifneq ("$(NOOPT)", "")