From db71c1a7c388d4207e254809f00e31fed63c270b Mon Sep 17 00:00:00 2001 From: Francois-Xavier Le Bail Date: Sun, 27 Apr 2025 11:33:35 +0200 Subject: [PATCH] CI: Add warning exemptions for Sun C (suncc-5.14) on Solaris 10 --- build.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build.sh b/build.sh index 99b0ce48..28eef8bd 100755 --- a/build.sh +++ b/build.sh @@ -40,6 +40,15 @@ tcc-*/*) # target type TCPDUMP_TAINTED=yes ;; +suncc-5.14/SunOS-5.10) + # "tcpdump.c", line 347: warning: function "exit_tcpdump" marked as not + # returning, might return + # "netdissect.c", line 317: warning: function "nd_trunc_longjmp" marked as + # not returning, might return + # "print.c", line 530: warning: function "ndo_error" marked as not + # returning, might return + TCPDUMP_TAINTED=yes + ;; *) ;; esac -- 2.39.5