Skip to content

Commit

Permalink
Fix fast-math optimize flag for MinGW x86_64 build
Browse files Browse the repository at this point in the history
Found by /dev/humancontroller.
  • Loading branch information
zturtleman committed Jul 15, 2014
1 parent 0fe2e8d commit 7afb433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7afb433

Please sign in to comment.