From: Matthias Braun Date: Wed, 19 Oct 2011 19:34:14 +0000 (+0200) Subject: we (also) build a shared lib for which some architecture require PIC code X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=75f30157e4c4306214309ff6f04a24e14d3e4508;p=libfirm we (also) build a shared lib for which some architecture require PIC code --- diff --git a/Makefile b/Makefile index d643a083b..8ebd85b23 100644 --- a/Makefile +++ b/Makefile @@ -25,10 +25,11 @@ RANLIB ?= ranlib DLLEXT ?= .so # Variants -CFLAGS_debug = -O0 -g3 -DDEBUG_libfirm -CFLAGS_profile = -O3 -pg -DNDEBUG -fno-inline +CFLAGS_all = -fPIC +CFLAGS_debug = $(CFLAGS_all) -O0 -g3 -DDEBUG_libfirm +CFLAGS_profile = $(CFLAGS_all) -O3 -pg -DNDEBUG -fno-inline LINKFLAGS_profile = -pg -CFLAGS_optimize = -O3 -DNDEBUG +CFLAGS_optimize = $(CFLAGS_all) -O3 -DNDEBUG # General flags CFLAGS += $(CFLAGS_$(variant))