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 | e038bd95054d1deb382224fe829f710ff8a327e9 (patch) | |
tree | 0478e2849d0b9ffc44a35c5e927939f35ebbedc0 /externals/deprecated/Makefile | |
parent | b975878c1470d65c6fb24a867fdcd25ffdceca7a (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/; revision=14145
Diffstat (limited to 'externals/deprecated/Makefile')
-rw-r--r-- | externals/deprecated/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/deprecated/Makefile b/externals/deprecated/Makefile index 3331cc94..5d351d5c 100644 --- a/externals/deprecated/Makefile +++ b/externals/deprecated/Makefile @@ -119,7 +119,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 WINDOWS_HACKS = -D'O_NONBLOCK=1' CFLAGS += -mms-bitfields $(WINDOWS_HACKS) LDFLAGS += -s -shared -Wl,--enable-auto-import |