Skip to content
Snippets Groups Projects
Commit 7bfd0b31 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

suppress warnings about incompatible casts with function pointers

Unfortunately we must rely on these in Purr Data. It's impossible to
enumerate every single function signature, especially given some are
dynamically loaded at runtime.
parent c16da6c7
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ LDFLAGS = @LDFLAGS@ ...@@ -41,7 +41,7 @@ LDFLAGS = @LDFLAGS@
LIB = @PDLIB@ LIB = @PDLIB@
WARN_CFLAGS = -Wall -W -Wstrict-prototypes \ WARN_CFLAGS = -Wall -W -Wstrict-prototypes \
-Wno-unused-parameter -Wno-parentheses -Wno-switch -Wno-unused-parameter -Wno-parentheses -Wno-switch -Wno-cast-function-type
#WARN_CFLAGS += -Werror=implicit-function-declaration #WARN_CFLAGS += -Werror=implicit-function-declaration
ARCH_CFLAGS = -DPD ARCH_CFLAGS = -DPD
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment