(VITA) Dynarec working

This commit is contained in:
lentillog
2016-09-30 23:44:49 -07:00
parent 36745acc51
commit 88f7643f70
5 changed files with 42 additions and 8 deletions

View File

@@ -2,7 +2,11 @@ TARGET ?= PicoDrive
CFLAGS += -Wall
CFLAGS += -I. -DINLINE=inline
ifndef DEBUG
ifeq ($(platform), vita)
CFLAGS += -O3 -DNDEBUG
else
CFLAGS += -O2 -DNDEBUG -ffunction-sections
endif
ifneq ($(APPLE),1)
LDFLAGS += -Wl,--gc-sections
endif