feature: Enable pedantic to improve portability

This commit is contained in:
Antoine Soulier
2023-05-08 09:42:56 -07:00
parent a48fdbc88c
commit 79795643ce
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ AS := $(if $(AS)=as,$(CC),$(AS))
LD := $(if $(LD)=ld,$(CC),$(LD))
CFLAGS := $(if $(DEBUG),-O0 -g,-O3)
CFLAGS += -std=c11 -Wall -Wextra -Wdouble-promotion -Wvla
CFLAGS += -std=c11 -Wall -Wextra -Wdouble-promotion -Wvla -pedantic
#