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 570f9ac9860b0f34e43ea3ba0bf8d099a5739bfe
parent bc1206c4fcbaab838675ac5c6004f863b3956371
Author: Joris Vink <joris@coders.se>
Date:   Mon,  9 Jul 2018 09:45:10 +0200

move optimzations back to -O2, not -O3.

Diffstat:
Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -40,7 +40,7 @@ endif ifneq ("$(NOOPT)", "") CFLAGS+=-O0 else - CFLAGS+=-O3 + CFLAGS+=-O2 endif ifneq ("$(NOSENDFILE)", "")