projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4745515
)
Remove -Wmissing-parameter-type compiler option.
author
Daniel Carl
<danielcarl@gmx.de>
Thu, 17 Apr 2014 08:39:14 +0000
(10:39 +0200)
committer
Daniel Carl
<danielcarl@gmx.de>
Thu, 17 Apr 2014 08:39:14 +0000
(10:39 +0200)
This seems to be no more required and produced warnings in clang compiler.
config.mk
patch
|
blob
|
history
diff --git
a/config.mk
b/config.mk
index
79a0c34
..
ad5c221
100644
(file)
--- a/
config.mk
+++ b/
config.mk
@@
-41,7
+41,7
@@
LIBFLAGS = $(shell pkg-config --libs $(LIBS))
# normal compiler flags
CFLAGS += $(shell pkg-config --cflags $(LIBS))
CFLAGS += -Wall -pipe -std=c99 -pedantic
-CFLAGS += -Wmissing-declarations -W
missing-parameter-type -W
no-overlength-strings
+CFLAGS += -Wmissing-declarations -Wno-overlength-strings
CFLAGS += ${CPPFLAGS}
LDFLAGS += ${LIBFLAGS}