[FFmpeg-cvslog] build: Add separate flags for checkheaders targets

Diego Biurrun git at videolan.org
Sat Apr 8 16:35:13 EEST 2017


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Wed Mar  9 15:39:29 2016 +0100| [2575b1917b2703fae41a4b4901ad85c888374dfd] | committer: Diego Biurrun

build: Add separate flags for checkheaders targets

This allows filtering out some warning noise.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2575b1917b2703fae41a4b4901ad85c888374dfd
---

 common.mak | 1 +
 configure  | 9 +++++++++
 2 files changed, 10 insertions(+)

diff --git a/common.mak b/common.mak
index 8f6a61f..3724648 100644
--- a/common.mak
+++ b/common.mak
@@ -33,6 +33,7 @@ ALLHEADERS := $(subst $(SRC_DIR)/,$(SUBDIR),$(wildcard $(SRC_DIR)/*.h $(SRC_DIR)
 SKIPHEADERS += $(ARCH_HEADERS:%=$(ARCH)/%) $(SKIPHEADERS-)
 SKIPHEADERS := $(SKIPHEADERS:%=$(SUBDIR)%)
 HOBJS        = $(filter-out $(SKIPHEADERS:.h=.h.o),$(ALLHEADERS:.h=.h.o))
+$(HOBJS):     CCFLAGS += $(CFLAGS_HEADERS)
 checkheaders: $(HOBJS)
 .SECONDARY:   $(HOBJS:.o=.c)
 
diff --git a/configure b/configure
index 983d56b..e1f7725 100755
--- a/configure
+++ b/configure
@@ -4851,6 +4851,14 @@ check_disable_warning -Wno-switch
 check_disable_warning -Wno-format-zero-length
 check_disable_warning -Wno-pointer-sign
 
+check_disable_warning_headers(){
+    warning_flag=-W${1#-Wno-}
+    test_cflags $warning_flag && append cflags_headers $1
+}
+
+check_disable_warning_headers -Wno-deprecated-declarations
+check_disable_warning_headers -Wno-unused-variable
+
 # add some linker flags
 check_ldflags -Wl,--warn-common
 check_ldflags -Wl,-rpath-link=libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
@@ -5315,6 +5323,7 @@ TARGET_EXEC=$target_exec $target_exec_args
 TARGET_PATH=$target_path
 TARGET_SAMPLES=${target_samples:-\$(SAMPLES)}
 CFLAGS-avplay=$sdl_cflags
+CFLAGS_HEADERS=$cflags_headers
 ZLIB=$($ldflags_filter -lz)
 LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
 EXTRALIBS=$extralibs



More information about the ffmpeg-cvslog mailing list