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 edc356ca6039e50d33f29797f0d250d0ed33ddd3
parent 00ce970efe64cc2e1b83a0981777e7ec46e96e2a
Author: Joris Vink <joris@coders.se>
Date:   Wed, 22 Feb 2017 13:01:53 -0800

no need for -rdynamic in kodev.

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

diff --git a/kodev/Makefile b/kodev/Makefile @@ -12,7 +12,7 @@ CFLAGS+=-Wall -Werror -Wstrict-prototypes -Wmissing-prototypes CFLAGS+=-Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual CFLAGS+=-Wsign-compare -Iincludes -std=c99 -pedantic CFLAGS+=-DPREFIX='"$(PREFIX)"' -LDFLAGS=-rdynamic -lcrypto +LDFLAGS=-lcrypto ifneq ("$(NOOPT)", "") CFLAGS+=-O0