From 39e81bd486f30c60eee3f09bbf12c50beaa7d2e3 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Sun, 2 Sep 2018 02:12:45 -0400 Subject: [PATCH] using -lpthread for linking isn't necessary --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 08fe295..84af804 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,6 @@ CPPFLAGS := -D_GNU_SOURCE CFLAGS := -std=c11 -Wall -Wextra -O2 -flto -fPIC -fvisibility=hidden -fno-plt -LDFLAGS := -Wl,--as-needed,-z,defs,-z,relro,-z,now -LDLIBS := -lpthread +LDFLAGS := -Wl,-z,defs,-z,relro,-z,now OBJECTS := chacha.o malloc.o memory.o pages.o random.o util.o hardened_malloc.so: $(OBJECTS)