git: 62a7fdc13ab4 - main - bsd.sys.mk: suppress another gcc warning for libc++
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 02 Jan 2026 20:32:57 UTC
The branch main has been updated by dim:
URL: https://cgit.FreeBSD.org/src/commit/?id=62a7fdc13ab45b48977424ef77bbc0f11f601e39
commit 62a7fdc13ab45b48977424ef77bbc0f11f601e39
Author: Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2026-01-02 20:29:05 +0000
Commit: Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2026-01-02 20:32:36 +0000
bsd.sys.mk: suppress another gcc warning for libc++
Similar to base 63d1c3c43690, suppress -Wc++20-extensions for gcc.
Otherwise libc++ headers will lead to many -Werror warnings, due to our
use of -Wsystem-headers, which is not officially supported upstream.
MFC after: 3 days
---
share/mk/bsd.sys.mk | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk
index c5f2c2bb783f..2757033f39b3 100644
--- a/share/mk/bsd.sys.mk
+++ b/share/mk/bsd.sys.mk
@@ -244,7 +244,8 @@ CWARNFLAGS+= -Wno-error=overflow
.if ${COMPILER_VERSION} >= 120100
# These warnings are raised by headers in libc++ so are disabled
# globally for all C++
-CXXWARNFLAGS+= -Wno-literal-suffix \
+CXXWARNFLAGS+= -Wno-literal-suffix \
+ -Wno-c++20-extensions \
-Wno-error=unknown-pragmas
.endif