Page MenuHomeFreeBSD

Add a CXXWARNFLAGS variable
ClosedPublic

Authored by asomers on Jul 30 2019, 4:52 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Apr 8, 11:11 AM
Unknown Object (File)
Thu, Mar 28, 7:04 PM
Unknown Object (File)
Feb 11 2024, 7:50 AM
Unknown Object (File)
Jan 28 2024, 10:19 AM
Unknown Object (File)
Jan 26 2024, 12:55 PM
Unknown Object (File)
Dec 20 2023, 3:44 AM
Unknown Object (File)
Dec 11 2023, 1:15 AM
Unknown Object (File)
Dec 7 2023, 2:30 AM

Details

Summary

Add a CXXWARNFLAGS variable

Some warning flags are valid for C++ but not C. GCC 8 complains if you pass
such flags when building a C file. Using a separate variable for these
flags allows building both C and C++ files in the same directory (such as
the fusefs tests) under GCC.

Test Plan

Tested with riscv64-unknown-freebsd13.0-g++ 8.1.0 and the fusefs
tests

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Seems fine to me.

Previously you tried C++-only flags in CFLAGS in the fuse tests?

Seems fine to me.

Previously you tried C++-only flags in CFLAGS in the fuse tests?

Yes. Neither Clang nor GCC 6 complained, but GCC 8 does. See https://svnweb.freebsd.org/base/projects/fuse2/tests/sys/fs/fusefs/Makefile?revision=350163&view=markup#l68 .

This revision is now accepted and ready to land.Jul 30 2019, 7:23 PM
This revision was automatically updated to reflect the committed changes.