diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-09-03 18:27:14 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-09-03 18:27:14 +0000 |
| commit | 41a0bfc5ede0de1196d3adb552b5ef659daebd4c (patch) | |
| tree | d56bd4ed99f3d8e2e7d422261023e5da406002e5 /apps/plugins/doom | |
| parent | 573f2206c1934e925b35565f472613d4917552d3 (diff) | |
| download | rockbox-41a0bfc5ede0de1196d3adb552b5ef659daebd4c.zip rockbox-41a0bfc5ede0de1196d3adb552b5ef659daebd4c.tar.gz rockbox-41a0bfc5ede0de1196d3adb552b5ef659daebd4c.tar.bz2 rockbox-41a0bfc5ede0de1196d3adb552b5ef659daebd4c.tar.xz | |
FS#12256: Use '-fgnu89-inline' for mpegplayer and doom. Resolves compiler warnings when using mingw32.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30420 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/doom')
| -rw-r--r-- | apps/plugins/doom/doom.make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/doom/doom.make b/apps/plugins/doom/doom.make index 07b553c..a405a5f 100644 --- a/apps/plugins/doom/doom.make +++ b/apps/plugins/doom/doom.make @@ -18,7 +18,7 @@ DOOM_OBJ := $(call c2obj, $(DOOM_SRC)) # add source files to OTHER_SRC to get automatic dependencies OTHER_SRC += $(DOOM_SRC) -DOOMCFLAGS = $(PLUGINFLAGS) -Wno-strict-prototypes -O2 -fno-strict-aliasing +DOOMCFLAGS = $(PLUGINFLAGS) -Wno-strict-prototypes -O2 -fno-strict-aliasing -fgnu89-inline ifndef APP_TYPE ifeq ($(TARGET), IRIVER_H100) |