Compile with -fstack-protector-all

This commit is contained in:
0x1eef 2023-08-25 20:29:47 -03:00
parent de2f0d55e1
commit 47b7537edc

View file

@ -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)