Fix fast-math optimize flag for MinGW x86_64 build

Found by /dev/humancontroller.
This commit is contained in:
Zack Middleton 2014-07-15 00:19:48 -05:00
parent 0fe2e8d224
commit 7afb433e20

View file

@ -558,7 +558,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)