From 3da880f5c526bfa9b48b0ef966e5b52c553658ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Gallou=C3=ABt?= Date: Wed, 3 Apr 2019 09:38:53 +0000 Subject: [PATCH] Use -fstack-protector-strong MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Adrien Gallouët --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5c7e3b2..ffc65a7 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ DESTDIR ?= CC ?= gcc INSTALL ?= install prefix ?= /usr -CFLAGS ?= -std=c11 -O2 -Wall +CFLAGS ?= -std=c11 -O2 -Wall -fstack-protector-strong FLAGS := $(CFLAGS) $(LDFLAGS) $(CPPFLAGS) FLAGS += -DPACKAGE_NAME=\"$(NAME)\" -DPACKAGE_VERSION=\"$(VERSION)\"