summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorZach Banks <zjbanks@gmail.com>2021-05-18 22:28:04 -0400
committerGitHub <noreply@github.com>2021-05-18 22:28:04 -0400
commitdea3c8fd792d29648697f697f34d3658bf3838cf (patch)
tree44343b1d23b9eb7f9fc1598da7a7f804528db204 /Makefile
parent7f1465991925a27539a1bd5361331b794772efb2 (diff)
Fix all warnings raised by IDO (#152)
* Fix all warnings raised by IDO, ignore trailing commas * Set -woff=624,...; keep const in printf functions * Remove redefined macros in irqmgr.c * Remove DECR macro & reformat * Address PR comments from AngheloAlf
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cdb2997f9..64707e34a 100644
--- a/Makefile
+++ b/Makefile
@@ -63,7 +63,7 @@ ASFLAGS := -march=vr4300 -32
MIPS_VERSION := -mips2
# we support Microsoft extensions such as anonymous structs, which the compiler does support but warns for their usage. Surpress the warnings with -woff.
-CFLAGS += -G 0 -non_shared -Xfullwarn -Xcpluscomm -Iinclude -I./ -Isrc -Wab,-r4300_mul -woff 649,838,712
+CFLAGS += -G 0 -non_shared -Xfullwarn -Xcpluscomm -Iinclude -I./ -Isrc -Wab,-r4300_mul -woff 624,649,838,712
#### Files ####