From 47b7537edc43fd43e9932e4fc3de1b2d2e6f0e2b Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Fri, 25 Aug 2023 20:29:47 -0300 Subject: [PATCH] Compile with -fstack-protector-all --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f9cd082..f0de433 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ TESTDIR = test TESTBIN = $(TESTDIR)/runner CC = cc -CFLAGS = -I$(INCDIR) -Wall -Wextra -pedantic +CFLAGS = -fstack-protector-all -I$(INCDIR) -Wall -Wextra -pedantic test: $(CC) $(CFLAGS) $(SRCDIR)/isinetaddr.c $(TESTDIR)/isinetaddr_test.c -o $(TESTBIN)