Skip to content
Snippets Groups Projects
Commit 79dd2496 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Disable unknown warning warning on !gcc

parent 6449d2dd
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4891 passed
......@@ -451,7 +451,10 @@ endif
ifdef DEBUG
CFLAGS += -ggdb
CFLAGS += -D_DEBUG
CFLAGS += -Wall -Wno-char-subscripts -Wno-format-truncation
CFLAGS += -Wall -Wno-char-subscripts
ifeq ($(CCPRE),gcc)
CFLAGS += -Wno-format-truncation
endif
else # RELEASE
# -finline-functions (used to) break the baja build badly.
# This also meant that -O3 wouldn't work either.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment