summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/doom.make
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-09-03 18:46:44 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-09-03 18:46:44 +0000
commit3b83e599233483edd86401f6698d822b0d4dc03c (patch)
treed80fe9612dc7d9a442c805f61889abddcb28246f /apps/plugins/doom/doom.make
parent41a0bfc5ede0de1196d3adb552b5ef659daebd4c (diff)
downloadrockbox-3b83e599233483edd86401f6698d822b0d4dc03c.tar.gz
rockbox-3b83e599233483edd86401f6698d822b0d4dc03c.zip
Do not set '-fgnu89-inline' for MIPS targets.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30421 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/doom/doom.make')
-rw-r--r--apps/plugins/doom/doom.make7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/plugins/doom/doom.make b/apps/plugins/doom/doom.make
index a405a5ff3f..c71ede6f8c 100644
--- a/apps/plugins/doom/doom.make
+++ b/apps/plugins/doom/doom.make
@@ -18,7 +18,12 @@ DOOM_OBJ := $(call c2obj, $(DOOM_SRC))
18# add source files to OTHER_SRC to get automatic dependencies 18# add source files to OTHER_SRC to get automatic dependencies
19OTHER_SRC += $(DOOM_SRC) 19OTHER_SRC += $(DOOM_SRC)
20 20
21DOOMCFLAGS = $(PLUGINFLAGS) -Wno-strict-prototypes -O2 -fno-strict-aliasing -fgnu89-inline 21DOOMCFLAGS = $(PLUGINFLAGS) -Wno-strict-prototypes -O2 -fno-strict-aliasing
22
23# Set '-fgnu89-inline' if supported for the target.
24ifneq ($(CPU),mips)
25 DOOMCFLAGS += -fgnu89-inline
26endif
22 27
23ifndef APP_TYPE 28ifndef APP_TYPE
24ifeq ($(TARGET), IRIVER_H100) 29ifeq ($(TARGET), IRIVER_H100)