summaryrefslogtreecommitdiff
path: root/apps/plugins/pdbox/pdbox.make
diff options
context:
space:
mode:
authorWilliam Wilgus <me.theuser@yahoo.com>2018-12-08 06:19:28 -0600
committerWilliam Wilgus <me.theuser@yahoo.com>2018-12-08 06:23:19 -0600
commit78b2d135671c798dbbc36086cbbf278038d34669 (patch)
tree0ef174431edadd5a00d8f72b3d118fa187bb0312 /apps/plugins/pdbox/pdbox.make
parent6bfd7da97c659f96eb38051ce31fcc7ff087ed16 (diff)
downloadrockbox-78b2d135671c798dbbc36086cbbf278038d34669.tar.gz
rockbox-78b2d135671c798dbbc36086cbbf278038d34669.zip
Pdbox hide cast-function-type fix overlapping memcpy
dsoundfile.c used memcpy for overlapping memory regions switched to memmove Suppress the 160+ warnings for cast-function-type This plugin would require major work to fix these warnings Change-Id: I309d914839c1e70126a05b387863fd21613497a9
Diffstat (limited to 'apps/plugins/pdbox/pdbox.make')
-rw-r--r--apps/plugins/pdbox/pdbox.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/pdbox/pdbox.make b/apps/plugins/pdbox/pdbox.make
index e95cdba2b9..7ec998dc5e 100644
--- a/apps/plugins/pdbox/pdbox.make
+++ b/apps/plugins/pdbox/pdbox.make
@@ -20,7 +20,7 @@ OTHER_SRC += $(PDBOX_SRC)
20 20
21$(PDBOXBUILDDIR)/pdbox.rock: $(PDBOX_OBJ) $(MPEG_OBJ) 21$(PDBOXBUILDDIR)/pdbox.rock: $(PDBOX_OBJ) $(MPEG_OBJ)
22 22
23PDBOXFLAGS = $(PLUGINFLAGS) -fno-strict-aliasing 23PDBOXFLAGS = $(PLUGINFLAGS) -fno-strict-aliasing -Wno-cast-function-type
24PDBOXLDFLAGS = $(PLUGINLDFLAGS) 24PDBOXLDFLAGS = $(PLUGINLDFLAGS)
25ifdef APP_TYPE 25ifdef APP_TYPE
26PDBOXLDFLAGS += -lm 26PDBOXLDFLAGS += -lm