mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Make debugging on CTR easier
Only omit frame pointers on non-debug builds.
This commit is contained in:
parent
51b13fc58c
commit
b8a340641a
1 changed files with 2 additions and 2 deletions
|
@ -154,7 +154,7 @@ LIBDIRS := -L. -L$(CTRULIB)/lib
|
|||
ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard -marm -mfpu=vfp -mtp=soft
|
||||
|
||||
CFLAGS += -mword-relocations \
|
||||
-fomit-frame-pointer -ffast-math \
|
||||
-ffast-math \
|
||||
-Werror=implicit-function-declaration \
|
||||
$(ARCH)
|
||||
|
||||
|
@ -168,7 +168,7 @@ endif
|
|||
ifeq ($(DEBUG), 1)
|
||||
CFLAGS += -O0 -g
|
||||
else
|
||||
CFLAGS += -O3
|
||||
CFLAGS += -fomit-frame-pointer -O3
|
||||
endif
|
||||
|
||||
ifeq ($(CONSOLE_LOG), 1)
|
||||
|
|
Loading…
Add table
Reference in a new issue