Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 Jul 2019 19:47:45 +0000 (UTC)
From:      Alan Somers <asomers@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r350455 - projects/fuse2/tests/sys/fs/fusefs
Message-ID:  <201907301947.x6UJljmK016090@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: asomers
Date: Tue Jul 30 19:47:45 2019
New Revision: 350455
URL: https://svnweb.freebsd.org/changeset/base/350455

Log:
  fusefs: fix building tests with GCC 8
  
  GCC 8 objected to including C++-only flags in CWARNFLAGS
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  projects/fuse2/tests/sys/fs/fusefs/Makefile

Modified: projects/fuse2/tests/sys/fs/fusefs/Makefile
==============================================================================
--- projects/fuse2/tests/sys/fs/fusefs/Makefile	Tue Jul 30 19:42:46 2019	(r350454)
+++ projects/fuse2/tests/sys/fs/fusefs/Makefile	Tue Jul 30 19:47:45 2019	(r350455)
@@ -65,7 +65,7 @@ TEST_METADATA+= timeout=10
 FUSEFS=		${SRCTOP}/sys/fs/fuse
 MOUNT=		${SRCTOP}/sbin/mount
 # Suppress warnings that GCC generates for the libc++ and gtest headers.
-CWARNFLAGS.gcc+=	-Wno-placement-new -Wno-attributes -Wno-class-memaccess
+CXXWARNFLAGS.gcc+=	-Wno-placement-new -Wno-attributes -Wno-class-memaccess
 CXXFLAGS+=	-I${SRCTOP}/tests
 CXXFLAGS+=	-I${FUSEFS}
 CXXFLAGS+=	-I${MOUNT}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907301947.x6UJljmK016090>