svn commit: r302441 - stable/11/sys/conf

Garrett Cooper ngie at FreeBSD.org
Fri Jul 8 18:54:29 UTC 2016


Author: ngie
Date: Fri Jul  8 18:54:28 2016
New Revision: 302441
URL: https://svnweb.freebsd.org/changeset/base/302441

Log:
  MFC r302438:
  
  Revert r302403
  
  lang/gcc{48,49,5} lacks -fformat-extensions support (causing build errors, which
  is what prompted r302403 to be committed). devel/amd64-gcc on the other hand
  (which is used by Jenkins), has the support.
  
  This fixes the Jenkins failure emails due to excessive warnings being produced
  with "make buildkernel".
  
  Discussed with: lwhsu
  Approved by: re (gjb)

Modified:
  stable/11/sys/conf/kern.mk
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/conf/kern.mk
==============================================================================
--- stable/11/sys/conf/kern.mk	Fri Jul  8 18:13:23 2016	(r302440)
+++ stable/11/sys/conf/kern.mk	Fri Jul  8 18:54:28 2016	(r302441)
@@ -62,7 +62,7 @@ CWARNEXTRA?=	-Wno-uninitialized
 FORMAT_EXTENSIONS=	-Wno-format
 .elif ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 30600
 FORMAT_EXTENSIONS=	-D__printf__=__freebsd_kprintf__
-.elif ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} == 40201
+.else
 FORMAT_EXTENSIONS=	-fformat-extensions
 .endif
 


More information about the svn-src-all mailing list