summaryrefslogtreecommitdiff
path: root/apps/plugins/doom
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom')
-rw-r--r--apps/plugins/doom/doom.make4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/doom/doom.make b/apps/plugins/doom/doom.make
index c71ede6f8c..b9bc1ec06b 100644
--- a/apps/plugins/doom/doom.make
+++ b/apps/plugins/doom/doom.make
@@ -20,8 +20,8 @@ OTHER_SRC += $(DOOM_SRC)
20 20
21DOOMCFLAGS = $(PLUGINFLAGS) -Wno-strict-prototypes -O2 -fno-strict-aliasing 21DOOMCFLAGS = $(PLUGINFLAGS) -Wno-strict-prototypes -O2 -fno-strict-aliasing
22 22
23# Set '-fgnu89-inline' if supported for the target. 23# Set '-fgnu89-inline' if supported (GCCVER >= 4.1.3, GCCNUM >= 401)
24ifneq ($(CPU),mips) 24ifeq ($(shell expr $(GCCNUM) \>= 401),1)
25 DOOMCFLAGS += -fgnu89-inline 25 DOOMCFLAGS += -fgnu89-inline
26endif 26endif
27 27