summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorZack Middleton <zturtleman@gmail.com>2014-07-15 00:19:48 -0500
committerTim Angus <tim@ngus.net>2014-08-28 11:03:33 +0100
commit8d34675fcd28850c5612f05044d68dba256050af (patch)
tree31bd8320c23aff5117e11f3cc962c126375e3473 /Makefile
parent4873ac84efd46a4af84dbbb3b6bbbbe5a2d2044e (diff)
Fix fast-math optimize flag for MinGW x86_64 build
Found by /dev/humancontroller.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9680f409..a0cfc2ba 100644
--- a/Makefile
+++ b/Makefile
@@ -547,7 +547,7 @@ ifeq ($(PLATFORM),mingw32)
ifeq ($(ARCH),x86_64)
OPTIMIZEVM = -O3 -fno-omit-frame-pointer \
-funroll-loops -falign-functions=2 -fstrength-reduce
- OPTIMIZE = $(OPTIMIZEVM) --fast-math
+ OPTIMIZE = $(OPTIMIZEVM) -ffast-math
HAVE_VM_COMPILED = true
endif
ifeq ($(ARCH),x86)