From 384384bb9ee4196c46bb7939d18ccfd89125195e Mon Sep 17 00:00:00 2001 From: DL6ER Date: Fri, 31 Mar 2017 20:14:41 +0100 Subject: [PATCH] Remove non-standard flag from makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 64219b30..b8fdae70 100644 --- a/Makefile +++ b/Makefile @@ -23,10 +23,10 @@ GIT_TAG := $(shell git describe --tags --abbrev=0) # -Wl,-z,now: When combined with RELRO above, this further reduces the regions of memory available to memory corruption attacks # -pie -fPIE: For ASLR # -g3: More debugging information -# -funwind-tables -mapcs-frame: Allow generating a backtrace also on ARM platforms +# -funwind-tables: Allow generating a backtrace also on ARM platforms CC=gcc HARDENING_FLAGS=-fstack-protector -D_FORTIFY_SOURCE=2 -O3 -Wl,-z,relro,-z,now -pie -fPIE -DEBUG_FLAGS=-g3 -funwind-tables -mapcs-frame -rdynamic +DEBUG_FLAGS=-g3 -funwind-tables -rdynamic CCFLAGS=-I$(IDIR) -Wall $(HARDENING_FLAGS) $(DEBUG_FLAGS) $(CFLAGS) LIBS=-pthread -lm