summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormartmists <mail@martmists.com>2020-04-21 19:16:35 +0200
committerGitHub <noreply@github.com>2020-04-21 19:16:35 +0200
commite75843a08471a1212bee05e8df9a6c804fbf248b (patch)
treed1b529a9e44cda643a0f927ba6bdb321ff36d177 /Makefile
parentaeb4e938f5f48c8484419f5333a5b0e6caee7a21 (diff)
parent8cdd2f137d6041538dcba2b13580b0f43f1cc549 (diff)
Merge pull request #16 from ProjectRevoTPP/master
split filesystem.s, scrcmd.s, and decompile script.c
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5a9021b5..c614d979 100644
--- a/Makefile
+++ b/Makefile
@@ -63,7 +63,7 @@ CROSS := arm-none-eabi-
MWCCARM := tools/mwccarm/$(MWCCVERSION)/mwccarm.exe
# Argh... due to EABI version shenanigans, we can't use GNU LD to link together
# MWCC built objects and GNU built ones. mwldarm, however, doesn't care, so we
-# have to use mwldarm for now.
+# have to use mwldarm for now.
# TODO: Is there a hack workaround to let us go back to GNU LD? Ideally, the
# only dependency should be MWCCARM.
MWLDARM := tools/mwccarm/$(MWCCVERSION)/mwldarm.exe
@@ -79,7 +79,7 @@ OBJCOPY := $(CROSS)objcopy
# ./tools/mwccarm/2.0/base/mwasmarm.exe -proc arm5te asm/arm9_thumb.s -o arm9.o
ASFLAGS = -proc arm5te
-CFLAGS = -O4,p -proc v5te -thumb -fp soft -lang c99 -Cpp_exceptions off -i include
+CFLAGS = -O4,p -proc v5te -thumb -fp soft -lang c99 -Cpp_exceptions off -i nitro -ir include
LDFLAGS = -map -nodead -w off -proc v5te -interworking -map -symtab -m Entry
####################### Other Tools #########################