From 343076dec17e06582263408d7117b717eb32024e Mon Sep 17 00:00:00 2001 From: MysterD Date: Sat, 23 Apr 2022 20:01:52 -0700 Subject: [PATCH] Make coop-compiler use O2 --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index ef19c9ee..5b0831f6 100644 --- a/Makefile +++ b/Makefile @@ -200,11 +200,11 @@ endif ifeq ($(DEBUG),0) # Can't use O2 or higher right now for auto-builders, coop-compiler produces strange graphical errors # likely due to undefined behavior somewhere - ifeq ($(WINDOWS_AUTO_BUILDER),1) - OPT_FLAGS := -O1 - else - OPT_FLAGS := -O2 - endif + #ifeq ($(WINDOWS_AUTO_BUILDER),1) + # OPT_FLAGS := -O1 + #else + OPT_FLAGS := -O2 + #endif else OPT_FLAGS := -O0 endif