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 | 4ded09e08721ef109ab41ebca2c6a4eeb45baf7b (patch) | |
tree | e8dd1f551486d8d9251966e2a36e57c85128195c /Makefile | |
parent | 41f2611ef14dc997cb13fd1bab804c5bb5634d47 (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/hcs/pan/; 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 |