Update Warnings flags in makefiles

This commit is contained in:
CTCaer
2022-10-11 07:25:21 +03:00
parent c0b16320cc
commit 9c1238f99d
5 changed files with 11 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ OBJS = $(addprefix $(BUILD)/,\
)
ARCH := -march=armv4t -mtune=arm7tdmi -mthumb-interwork
CFLAGS = $(ARCH) -O2 -nostdlib -fpie -ffunction-sections -fdata-sections -fomit-frame-pointer -std=gnu11 -Wall $(CUSTOMDEFINES)
CFLAGS = $(ARCH) -O2 -nostdlib -fpie -ffunction-sections -fdata-sections -fomit-frame-pointer -std=gnu11 -Wall -Wsign-compare $(CUSTOMDEFINES)
LDFLAGS = $(ARCH) -fpie -pie -nostartfiles -lgcc
.PHONY: clean all