medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 76ec24bfdeabfa400e2d41d65443ab1993edffb8
parent cc35c8e6a911575304345953f7267b6870e3d50c
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sat Jan 30 14:42:14 +0000

Use SSE3 for the x87 FTZ/DAZ helpers

Diffstat:
Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -22,7 +22,7 @@ COMMON_OBJS := memory_arena.o work_queue.o immediate.o benchmark.o stb_truetype. # Compiler flags WARNINGS := -Wall -Wextra -Wno-unused-parameter -Wno-unused-function CXXFLAGS += -std=c++11 -O2 \ - -msse2 -ggdb3 -fno-omit-frame-pointer $(WARNINGS) -DGL_GLEXT_PROTOTYPES -DGLFW_INCLUDE_NONE -ffreestanding -fno-exceptions + -msse3 -ggdb3 -fno-omit-frame-pointer $(WARNINGS) -DGL_GLEXT_PROTOTYPES -DGLFW_INCLUDE_NONE -ffreestanding -fno-exceptions LDFLAGS += -lm -pthread # The STB libraries need you to pass -DSTB_*_IMPLEMENTATION to get the actual code