mirror of
https://github.com/UberGames/ioef.git
synced 2025-02-22 19:41:24 +00:00
Fix fast-math optimize flag for MinGW x86_64 build
Found by /dev/humancontroller.
This commit is contained in:
parent
0fe2e8d224
commit
7afb433e20
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -558,7 +558,7 @@ ifeq ($(PLATFORM),mingw32)
|
||||||
ifeq ($(ARCH),x86_64)
|
ifeq ($(ARCH),x86_64)
|
||||||
OPTIMIZEVM = -O3 -fno-omit-frame-pointer \
|
OPTIMIZEVM = -O3 -fno-omit-frame-pointer \
|
||||||
-funroll-loops -falign-functions=2 -fstrength-reduce
|
-funroll-loops -falign-functions=2 -fstrength-reduce
|
||||||
OPTIMIZE = $(OPTIMIZEVM) --fast-math
|
OPTIMIZE = $(OPTIMIZEVM) -ffast-math
|
||||||
HAVE_VM_COMPILED = true
|
HAVE_VM_COMPILED = true
|
||||||
endif
|
endif
|
||||||
ifeq ($(ARCH),x86)
|
ifeq ($(ARCH),x86)
|
||||||
|
|
Loading…
Reference in a new issue