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 26fdbc40304f8bf6445d2dd34bd70d6940d0592a
parent 0549295f30008897a95e1d2e034459dc39b0491a
Author: Joris Vink <joris@coders.se>
Date:   Sun, 31 Jan 2021 14:54:26 +0100

Add -fno-common to CFLAGS.

Newer compilers have this enabled by default, instead of -fcommon
so enable it here to catch any problems early.

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

diff --git a/Makefile b/Makefile @@ -31,7 +31,7 @@ FEATURES_INC= CFLAGS+=-Wall -Werror -Wstrict-prototypes -Wmissing-prototypes CFLAGS+=-Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual CFLAGS+=-Wsign-compare -Iinclude/kore -I$(OBJDIR) -std=c99 -pedantic -CFLAGS+=-Wtype-limits +CFLAGS+=-Wtype-limits -fno-common CFLAGS+=-DPREFIX='"$(PREFIX)"' -fstack-protector-all ifneq ("$(OPENSSL_PATH)", "")