Page MenuHomeFreeBSD

Add a CXXWARNFLAGS variable
ClosedPublic

Authored by asomers on Jul 30 2019, 4:52 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, May 10, 3:44 PM
Unknown Object (File)
Fri, May 8, 7:15 PM
Unknown Object (File)
Sun, May 3, 4:21 PM
Unknown Object (File)
May 1 2026, 12:46 PM
Unknown Object (File)
Apr 27 2026, 6:48 PM
Unknown Object (File)
Apr 26 2026, 7:40 AM
Unknown Object (File)
Apr 15 2026, 6:07 AM
Unknown Object (File)
Apr 11 2026, 5:20 PM

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.