Make coop-compiler use O2
This commit is contained in:
parent
26b3ec966c
commit
a41c9f3f7b
8
Makefile
8
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
|
||||
#ifeq ($(WINDOWS_AUTO_BUILDER),1)
|
||||
# OPT_FLAGS := -O1
|
||||
#else
|
||||
OPT_FLAGS := -O2
|
||||
endif
|
||||
#endif
|
||||
else
|
||||
OPT_FLAGS := -O0
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue