commit: 7eab20a224f411ef2660f4fecae22e28cad711e7 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Aug 7 09:19:29 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Aug 7 09:20:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eab20a2
toolchain.eclass: try harder to suppress -Wformat and friends * Followup to f66787897a590b8c949d257e3a9107f8995f62ae * See https://inbox.sourceware.org/gcc-patches/87v80cn24t.fsf <AT> gentoo.org/ Still not quite right though per link above. Signed-off-by: Sam James <sam <AT> gentoo.org> eclass/toolchain.eclass | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 9304800f09f7..591ca98d7467 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1947,8 +1947,11 @@ toolchain_src_test() { # Go doesn't support this and causes noisy warnings filter-flags -Wbuiltin-declaration-mismatch + local suppress_warn="/-Wno-format/-Wno-format-security/-Wno-trampolines" + RUNTESTFLAGS+=" --target_board=unix\{${suppress_warn}" # TODO: Does this handle s390 (-m31) correctly? - is_multilib && GCC_TESTS_RUNTESTFLAGS+=" --target_board=unix\{,-m32\}" + is_multilib && GCC_TESTS_RUNTESTFLAGS+=" ,-m32/${suppress_warn}" + RUNTESTFLAGS+="\}" # nonfatal here as we die if the comparison below fails. Also, note that # the exit code of targets other than 'check' may be unreliable.