aboutsummaryrefslogtreecommitdiff
path: root/comport
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
commitaa706e9d01db81409afcdc68a3ba30c8c8d0ebc5 (patch)
tree6b7aaed0c190654d1bea0680407ff2cc2b00cb21 /comport
parent68295eb1800cbb5c92b94e5f970d119aaa56a4c4 (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/iem/comport/; revision=14145
Diffstat (limited to 'comport')
-rw-r--r--comport/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/comport/Makefile b/comport/Makefile
index 14ee808..924c116 100644
--- a/comport/Makefile
+++ b/comport/Makefile
@@ -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