mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-21 19:45:10 +00:00
Restore debugging optimization level to -O0, add more warning ignores
This commit is contained in:
parent
6b46a04030
commit
a39d004584
1 changed files with 2 additions and 1 deletions
3
Makefile
3
Makefile
|
@ -201,7 +201,7 @@ ifeq ($(DEBUG),0)
|
|||
OPT_FLAGS := -O2
|
||||
endif
|
||||
else
|
||||
OPT_FLAGS := -Og
|
||||
OPT_FLAGS := -O0
|
||||
endif
|
||||
|
||||
# Set our level of debug symbol info,
|
||||
|
@ -633,6 +633,7 @@ ifeq ($(WINDOWS_AUTO_BUILDER),1)
|
|||
else ifeq ($(COMPILER),gcc)
|
||||
CC := $(CROSS)gcc
|
||||
CXX := $(CROSS)g++
|
||||
EXTRA_CFLAGS += -Wno-unused-result -Wno-format-truncation
|
||||
else ifeq ($(COMPILER),clang)
|
||||
CC := clang
|
||||
CXX := clang++
|
||||
|
|
Loading…
Reference in a new issue