Merge pull request #76 from samuelplaca/compilation-flag-fix

Update cflags in Makefile of finalize
This commit is contained in:
ihaveahax
2024-04-17 19:10:12 -05:00
committed by GitHub
2 changed files with 1 additions and 2 deletions

1
.gitignore vendored
View File

@@ -1,6 +1,5 @@
.vscode/
bin/linux/save3ds_fuse
**/finalize
cstins/
testing-class.py

View File

@@ -54,7 +54,7 @@ CFLAGS := -g -Wall -O2 -mword-relocations \
-fomit-frame-pointer -ffunction-sections \
$(ARCH)
CFLAGS += $(INCLUDE) -DARM11 -D_3DS
CFLAGS += $(INCLUDE) -D__3DS__
CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++11