mirror of
https://github.com/opnsense/src.git
synced 2026-02-03 20:49:35 -05:00
Silence VLA extension warnings in fusefs tests
Building tests/sys/fs/fusefs with clang 18 results the following
warning:
tests/sys/fs/fusefs/cache.cc:145:14: error: variable length arrays in C++ are a Clang extension [-Werror,-Wvla-cxx-extension]
145 | uint8_t buf[bufsize];
| ^~~~~~~
Because we do not particularly care that this is a clang extension,
suppress the warning.
MFC after: 3 days
(cherry picked from commit dc0b4094abf6784bf1a9492c2fea3fb91116b014)
This commit is contained in:
parent
29b3ac60ae
commit
f23f9c0fd2
1 changed files with 4 additions and 0 deletions
|
|
@ -83,6 +83,10 @@ CXXWARNFLAGS+= -Wno-class-memaccess
|
|||
CXXWARNFLAGS.gcc+= -Wno-unused-but-set-variable
|
||||
# Suppress warnings about deprecated implicit copy constructors in gtest.
|
||||
CXXWARNFLAGS+= -Wno-deprecated-copy
|
||||
.if ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 180000
|
||||
# clang 18.0.0 introduces a new warning about variable length arrays in C++.
|
||||
CXXWARNFLAGS+= -Wno-vla-cxx-extension
|
||||
.endif
|
||||
CXXFLAGS+= -I${SRCTOP}/tests
|
||||
CXXFLAGS+= -I${FUSEFS}
|
||||
CXXFLAGS+= -I${MOUNT}
|
||||
|
|
|
|||
Loading…
Reference in a new issue