mirror of
https://github.com/xtreme8000/CavEX.git
synced 2025-01-22 01:01:58 -05:00
Makefile add no debug flag
it's configured for release builds so this seems reasonable
This commit is contained in:
parent
8610cddab3
commit
2075a08a02
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -32,10 +32,10 @@ INCLUDES :=
|
|||
# options for code generation
|
||||
#---------------------------------------------------------------------------------
|
||||
|
||||
CFLAGS = -std=c99 -pedantic -Wextra -Wno-unused-parameter -flto=auto -O3 -Wall -DPLATFORM_WII $(MACHDEP) $(INCLUDE)
|
||||
CFLAGS = -std=c99 -pedantic -Wextra -Wno-unused-parameter -flto=auto -O3 -Wall -DNDEBUG -DPLATFORM_WII $(MACHDEP) $(INCLUDE)
|
||||
CXXFLAGS = $(CFLAGS)
|
||||
|
||||
LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map
|
||||
LDFLAGS = $(MACHDEP) -Wl,-Map,$(notdir $@).map
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
# any extra libraries we wish to link with the project
|
||||
|
|
Loading…
Reference in a new issue