From ca705b4fea7b2808dbb21d018c5e50f85def5bf2 Mon Sep 17 00:00:00 2001 From: Robert Swiecki Date: Fri, 27 Oct 2017 01:53:05 +0200 Subject: [PATCH] Makefile: remove relro,now as it doesn't allow to compile under some archs --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 85772f2..2bb7de2 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ CFLAGS += $(COMMON_FLAGS) \ -std=gnu11 CXXFLAGS += $(COMMON_FLAGS) $(shell pkg-config --cflags protobuf) \ -std=c++11 -Wno-unused -Wno-unused-parameter -LDFLAGS += -Wl,-z,now -Wl,-z,relro -pie -Wl,-z,noexecstack -lpthread $(shell pkg-config --libs protobuf) +LDFLAGS += -pie -Wl,-z,noexecstack -lpthread $(shell pkg-config --libs protobuf) BIN = nsjail LIBS = kafel/libkafel.a -- 2.34.1