From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id 547E2385841C; Fri, 9 Feb 2024 17:30:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 547E2385841C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1707499810; bh=34+kjES1L7cKHb0JCtEGtk0AoJJkJRd7scxh4/5qQ68=; h=From:To:Subject:Date:From; b=L6lvPvecVXNegHAj9Bs9hNdJLy9aCSqjzJA3Rw9ckSFk5tiQZ2sw6i+iJ6e3Fx0rw XXdgiEYCn4A4tM0JeE2gtE3Wpk+SLpMIZv4SSBV4iPobPK+uO0LTlxUKZVhhEFlUZX Pfz7eXszQsqXeQxJX8o6ZQ01CgddmPDwutMgQGL8= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc/azanella/clang] elf: Suppress clang -Wstring-plus-int on rtld.c X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/azanella/clang X-Git-Oldrev: 8b1df51320ec9bfeec9df11135ca990c618f6e2d X-Git-Newrev: 6cf526b86ecefe7ae53b64927de741ae044c18ef Message-Id: <20240209173010.547E2385841C@sourceware.org> Date: Fri, 9 Feb 2024 17:30:10 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6cf526b86ecefe7ae53b64927de741ae044c18ef commit 6cf526b86ecefe7ae53b64927de741ae044c18ef Author: Adhemerval Zanella Date: Thu Mar 10 09:48:32 2022 -0300 elf: Suppress clang -Wstring-plus-int on rtld.c clang issues an warning adding 'const unsigned char' to a string does not append to the string, however it is exactly what code means here. Diff: --- elf/rtld.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/elf/rtld.c b/elf/rtld.c index ac4bb23652..7d32de9588 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -2520,10 +2520,16 @@ warning: debug option `%s' unknown; try LD_DEBUG=help\n", copy); _dl_printf ("\ Valid options for the LD_DEBUG environment variable are:\n\n"); + /* clang issues an warning adding 'const unsigned char' to a string + does not append to the string, however it is exactly what code + means here. */ + DIAG_PUSH_NEEDS_COMMENT_CLANG; + DIAG_IGNORE_NEEDS_COMMENT_CLANG (16, "-Wstring-plus-int"); for (cnt = 0; cnt < ndebopts; ++cnt) _dl_printf (" %.*s%s%s\n", debopts[cnt].len, debopts[cnt].name, " " + debopts[cnt].len - 3, debopts[cnt].helptext); + DIAG_POP_NEEDS_COMMENT_CLANG; _dl_printf ("\n\ To direct the debugging output into a file instead of standard output\n\