Merge pull request #14006 from MrHuu/ctr_compile_flags

(3DS) Support latest libctru
This commit is contained in:
LibretroAdmin 2022-06-04 17:14:00 +01:00 committed by GitHub
commit 4226a8311e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -159,6 +159,10 @@ CFLAGS += -mword-relocations \
#CFLAGS += -Wall
CFLAGS += -DARM11 -D_3DS
ifeq ($(strip $(USE_CTRULIB_2)),1)
CFLAGS += -D__3DS__
endif
ifeq ($(DEBUG), 1)
CFLAGS += -O0 -g
else

View File

@ -90,6 +90,10 @@ CFLAGS += -mword-relocations \
#CFLAGS += -Wall
CFLAGS += -DARM11 -D_3DS
ifeq ($(strip $(USE_CTRULIB_2)),1)
CFLAGS += -D__3DS__
endif
ifeq ($(DEBUG), 1)
CFLAGS += -O0 -g
else