From 967041f542e940b53064d181c866fc79a76ed3c0 Mon Sep 17 00:00:00 2001 From: stf <7o5rfu92t@ctrlc.hu> Date: Fri, 22 Nov 2024 03:30:31 +0100 Subject: [PATCH] [fix] should fix https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1085466 --- src/makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/makefile b/src/makefile index 4fd5da2..42e70bb 100644 --- a/src/makefile +++ b/src/makefile @@ -1,10 +1,11 @@ PREFIX?=/usr/local LIBS=-lsodium -loprf DEFINES= -CFLAGS?=-march=native -Wall -O2 -g -fstack-protector-strong -D_FORTIFY_SOURCE=2 -fasynchronous-unwind-tables -fpic \ +CFLAGS?=-march=native -Wall -O2 -g -fstack-protector-strong -D_FORTIFY_SOURCE=2 -fasynchronous-unwind-tables \ -Werror=format-security -Werror=implicit-function-declaration \ - -Warray-bounds -fsanitize=bounds -fsanitize-undefined-trap-on-error -ftrapv -std=c99 $(DEFINES) + -Warray-bounds -fsanitize=bounds -fsanitize-undefined-trap-on-error -ftrapv $(DEFINES) #-fstrict-flex-arrays +CFLAGS+= -std=c99 -fpic LDFLAGS=-g $(LIBS) CC?=gcc AEXT=a