diff --git a/project/makefile b/project/makefile index 0328d93..7bc2dbc 100644 --- a/project/makefile +++ b/project/makefile @@ -24,7 +24,7 @@ ifeq "$(DEBUG)" "true" COMPILER_FLAGS += -D_DEBUG -DDEBUG -g3 BINARY_DIR = debug else - COMPILER_FLAGS += -DNDEBUG -pipe -Ofast -msse$(COMPILER_SSE_VERSION) -funroll-loops -fomit-frame-pointer -fno-stack-protector -fvisibility=hidden -fvisibility-inlines-hidden + COMPILER_FLAGS += -DNDEBUG -pipe -O2 -msse$(COMPILER_SSE_VERSION) -funroll-loops -fomit-frame-pointer -fno-stack-protector -fvisibility=hidden -fvisibility-inlines-hidden BINARY_DIR = release endif @@ -33,10 +33,6 @@ COMPILER = $(CC) ifeq "$(shell uname -s)" "Darwin" MACOS = true -else - ifeq "$(MACOS)" "true" - COMPILER = o32-clang - endif endif ifeq "$(MACOS)" "true" @@ -107,4 +103,4 @@ clean: rm -rf release/*.o rm -rf release/$(BINARY_OUTPUT) rm -rf debug/*.o - rm -rf debug/$(BINARY_OUTPUT) \ No newline at end of file + rm -rf debug/$(BINARY_OUTPUT)