From 1662f086c7ca420b8a0830ff020dcc452d44ddf0 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 29 Mar 2013 21:24:12 -0400 Subject: [PATCH] Compile with -fPIC so that we can build shared libraries. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 14cba8a..53b5f75 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -FLAGS_COMMON:=-Wall -Wno-unused +FLAGS_COMMON:=-Wall -Wno-unused -fPIC FLAGS_PROD:=-DNDEBUG -O2 -march=native FLAGS_DEBUG:=-DVERIFY -ggdb3 -O1 FLAGS_TEST:=-DVERIFY -ggdb3 -O2 -march=native