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 | 6c32f270d112cbb44d1ceff3e3fb6f5ede542bab (patch) | |
tree | 545240aec73f22cbb308ff1d39d493ac8e9a00ef /tms5220~ | |
parent | 8b367d4a50f0a71178403b72bb65645f1478277f (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 truthHEADsvn2git-headexternals/ffext
svn path=/trunk/externals/ffext/; revision=14145
Diffstat (limited to 'tms5220~')
-rw-r--r-- | tms5220~/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tms5220~/Makefile b/tms5220~/Makefile index eb775d4..7a84ae6 100644 --- a/tms5220~/Makefile +++ b/tms5220~/Makefile @@ -136,7 +136,7 @@ ifeq (MINGW,$(findstring MINGW,$(UNAME))) SOURCES += $(SOURCES_windows) EXTENSION = dll OS = windows - 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 |