summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/doom.make
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/doom.make')
-rw-r--r--apps/plugins/doom/doom.make4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/doom/doom.make b/apps/plugins/doom/doom.make
index 0ebdf384a1..8be7620feb 100644
--- a/apps/plugins/doom/doom.make
+++ b/apps/plugins/doom/doom.make
@@ -24,6 +24,10 @@ DOOMCFLAGS = $(PLUGINFLAGS) -Wno-strict-prototypes -O2 -fno-strict-aliasing
24ifeq ($(shell expr $(GCCNUM) \> 401),1) 24ifeq ($(shell expr $(GCCNUM) \> 401),1)
25 DOOMCFLAGS += -fgnu89-inline 25 DOOMCFLAGS += -fgnu89-inline
26endif 26endif
27# Disable stringop-truncation warnings on GCC 8 or greater
28ifeq ($(shell expr $(GCCNUM) \> 800),1)
29 DOOMCFLAGS += -Wno-stringop-truncation
30endif
27 31
28ifndef APP_TYPE 32ifndef APP_TYPE
29ifeq ($(TARGET), IRIVER_H100) 33ifeq ($(TARGET), IRIVER_H100)