[asterisk-commits] mjordan: trunk r433722 - in /trunk: ./ Makefile.rules
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sun Mar 29 20:57:10 CDT 2015
Author: mjordan
Date: Sun Mar 29 20:57:07 2015
New Revision: 433722
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=433722
Log:
clang compiler warnings: Ignore -Wunused-command-line-argument
Asterisk's build system has a tendency to pass include directives for libraries
to everything compiled within a particular group of source files. This means
we pass the header for libxml2 to things that don't necessarily need it. As a
result, we ignore this particular warning.
Review: https://reviewboard.asterisk.org/r/4545/
ASTERISK-24917
Reported by: dkdegroot
patches:
rb4545.patch submitted by dkdegroot (License 6600)
........
Merged revisions 433720 from http://svn.asterisk.org/svn/asterisk/branches/11
........
Merged revisions 433721 from http://svn.asterisk.org/svn/asterisk/branches/13
Modified:
trunk/ (props changed)
trunk/Makefile.rules
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-13-merged' - no diff available.
Modified: trunk/Makefile.rules
URL: http://svnview.digium.com/svn/asterisk/trunk/Makefile.rules?view=diff&rev=433722&r1=433721&r2=433722
==============================================================================
--- trunk/Makefile.rules (original)
+++ trunk/Makefile.rules Sun Mar 29 20:57:07 2015
@@ -101,10 +101,17 @@
%.o: %.i
$(ECHO_PREFIX) echo " [CCi] $< -> $@"
+ifneq ($(AST_CLANG_BLOCKS),)
+ifeq ($(COMPILE_DOUBLE),yes)
+ $(CMD_PREFIX) $(CC) -o /dev/null -c $< $(CC_CFLAGS) $(OPTIMIZE) -Wno-unused-command-line-argument
+endif
+ $(CMD_PREFIX) $(CC) -o $@ -c $< $(CC_CFLAGS) $(_ASTCFLAGS_COVERAGE) -Wno-unused-command-line-argument
+else
ifeq ($(COMPILE_DOUBLE),yes)
$(CMD_PREFIX) $(CC) -o /dev/null -c $< $(CC_CFLAGS) $(OPTIMIZE)
endif
$(CMD_PREFIX) $(CC) -o $@ -c $< $(CC_CFLAGS) $(_ASTCFLAGS_COVERAGE)
+endif
ifneq ($(COMPILE_DOUBLE),yes)
%.o: %.c
More information about the asterisk-commits
mailing list