commit | 15411747e73b38049409e913ae35d1bc5b54c821 | [log] [tgz] |
---|---|---|
author | Tom Hughes <tomhughes@chromium.org> | Fri Jan 17 09:32:42 2025 -0800 |
committer | Benjamin Cabé <kartben@gmail.com> | Thu Mar 20 21:57:47 2025 +0100 |
tree | b5122cbb76ef1778e2cb2250d1698741516a5c88 | |
parent | 11d70c61e5077163fe9d287306b88afbd8748047 [diff] |
everywhere: Use correct macro for gcc-specific warnings Many warnings were disabled for all compilers, even though they are gcc-specific warnings. Now that clang has -Wunknown-warning-option enabled, this can cause compilation failures when building with clang toolchains. Use TOOLCHAIN_DISABLE_GCC_WARNING for all gcc-specific macros. https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html https://clang.llvm.org/docs/DiagnosticsReference.html Fixes: #84138 Signed-off-by: Tom Hughes <tomhughes@chromium.org>