From d54f599e4142ca28dc58a1160534a6f6d08a6118 Mon Sep 17 00:00:00 2001 From: Lenny Kovac <44415793+lennykovac@users.noreply.github.com> Date: Fri, 19 Aug 2022 15:22:51 +0200 Subject: [PATCH] Added -fPIC as compile flag --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 37751bb3..3e46d0fd 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CC= gcc #CC= clang --analyze -CFLAGS= -g -Wall -Wno-unused-function -O2 +CFLAGS= -g -Wall -Wno-unused-function -O2 -fPIC WRAP_MALLOC=-DUSE_MALLOC_WRAPPERS AR= ar DFLAGS= -DHAVE_PTHREAD $(WRAP_MALLOC)