diff options
author | mescalinum <mescalinum@users.sourceforge.net> | 2010-09-15 12:37:05 +0000 |
---|---|---|
committer | mescalinum <mescalinum@users.sourceforge.net> | 2010-09-15 12:37:05 +0000 |
commit | 56d0d288bb804ab58e313cf55c20a6a75d640da6 (patch) | |
tree | c3a6fccb1b1c74fc73e923ea1d1b0e10fad74387 /Makefile | |
parent | 3ea0f4d83215d3177d7d3665f1cc13580b2ad357 (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/pmpd/; revision=14145
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -140,7 +140,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 |