svn commit: r303188 - head/share/mk

Bruce Evans brde at optusnet.com.au
Fri Jul 22 21:57:33 UTC 2016


On Fri, 22 Jul 2016, John Baldwin wrote:

> On Friday, July 22, 2016 03:00:38 PM Ruslan Bukin wrote:
>>
>> Log:
>>   Add warn flags for GCC 6.1 compiler.
>>
>>   Sponsored by:	DARPA, AFRL
>>
>> Modified:
>>   head/share/mk/bsd.sys.mk
>>
>> Modified: head/share/mk/bsd.sys.mk
>> ==============================================================================
>> --- head/share/mk/bsd.sys.mk	Fri Jul 22 14:57:26 2016	(r303187)
>> +++ head/share/mk/bsd.sys.mk	Fri Jul 22 15:00:38 2016	(r303188)
>> @@ -114,6 +114,11 @@ CWARNFLAGS+=	-Wno-format
>>  CWARNFLAGS+=	-Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address
>>  .endif
>>
>> +# GCC 6.1.0
>> +.if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 60100
>> +CWARNFLAGS+=	-Wno-error=unused-const-variable= -Wno-error=nonnull-compare -Wno-error=shift-negative-value -Wno-error=misleading-indentation -Wno-error=tautological-compare
>> +.endif
>
> Extra trailing = in the first one as well?

I don't see one.  I see only unreadably long lines containing unreadably
unordered flags.  Perhaps your mail client mangled the line splitting,
but the above quite displays OK in mutt and vi here (except mutt makes
the line wrapping especially ugly by highlighting it).

Bruce


More information about the svn-src-head mailing list