aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormescalinum <mescalinum@users.sourceforge.net>2010-09-15 12:37:05 +0000
committermescalinum <mescalinum@users.sourceforge.net>2010-09-15 12:37:05 +0000
commit48c1a8ac330e016aa6b888a1a64577f2ee34d8c2 (patch)
treef8486066b3286e150ae33b1d4f4dbcb68b8b00d6
parentbcb954259e0e9d5ba07c8a12c57ba7751ca91781 (diff)
remove -mcpu/-mtune flags as it breaks x64 build. we should eventually figure a way of determining automatically the CPU, but 'uname -m' doesn't tell the truth
svn path=/trunk/externals/plugin~/; revision=14145
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b83ddd7..8ff5140 100644
--- a/Makefile
+++ b/Makefile
@@ -142,7 +142,7 @@ ifeq (MINGW,$(findstring MINGW,$(UNAME)))
EXTENSION = dll
OS = windows
PD_PATH = $(shell cd "$(PROGRAMFILES)"/pd && pwd)
- OPT_CFLAGS = -O3 -funroll-loops -fomit-frame-pointer -march=i686 -mtune=pentium4
+ OPT_CFLAGS = -O3 -funroll-loops -fomit-frame-pointer
CFLAGS += -mms-bitfields
LDFLAGS += -s -shared -Wl,--enable-auto-import
LIBS += -L"$(PD_PATH)/src" -L"$(PD_PATH)/bin" -L"$(PD_PATH)/obj" -lpd -lwsock32 -lkernel32 -luser32 -lgdi32