From 8d34675fcd28850c5612f05044d68dba256050af Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Tue, 15 Jul 2014 00:19:48 -0500 Subject: Fix fast-math optimize flag for MinGW x86_64 build Found by /dev/humancontroller. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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) -- cgit