mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +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)
|
||||
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)
|
||||
|
|
Loading…
Reference in a new issue