From f1e8add4ca67d7f43d44b1426018ab082cfc013f Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 31 Mar 2016 16:01:23 -0400 Subject: [PATCH] "-mdynamic-no-pic" was largely a Mac OS X/powerpc optimization. Remove it. --- Sources/Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Sources/Makefile b/Sources/Makefile index 10f2e45..2a23fe0 100644 --- a/Sources/Makefile +++ b/Sources/Makefile @@ -637,10 +637,6 @@ else OPTFLAG := -O3 -ffast-math -falign-loops=16 -fno-math-errno ifneq ($(strip $(macosx)),true) OPTFLAG += -march=pentium -mcpu=pentiumpro - else - ifeq ($(strip $(static_link)),true) - OPTFLAG += -mdynamic-no-pic - endif endif endif CFLAGS += -DNDEBUG -D_NDEBUG $(OPTFLAG)