public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/azanella/clang] elf: Suppress clang -Wstring-plus-int on rtld.c
@ 2024-04-17 20:05 Adhemerval Zanella
0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2024-04-17 20:05 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=3d7304378bade0b52180deb08aeaecf9768b991b
commit 3d7304378bade0b52180deb08aeaecf9768b991b
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
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 d116a436f5..eacd406b68 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -2523,10 +2523,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\
^ permalink raw reply [flat|nested] 11+ messages in thread
* [glibc/azanella/clang] elf: Suppress clang -Wstring-plus-int on rtld.c
@ 2024-04-02 15:52 Adhemerval Zanella
0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2024-04-02 15:52 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=578a95995614f53e141f93f9b61cbb074fa926fa
commit 578a95995614f53e141f93f9b61cbb074fa926fa
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
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 18d73f19c6..ba1edcbc6f 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -2522,10 +2522,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\
^ permalink raw reply [flat|nested] 11+ messages in thread
* [glibc/azanella/clang] elf: Suppress clang -Wstring-plus-int on rtld.c
@ 2024-02-09 17:30 Adhemerval Zanella
0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2024-02-09 17:30 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6cf526b86ecefe7ae53b64927de741ae044c18ef
commit 6cf526b86ecefe7ae53b64927de741ae044c18ef
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
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\
^ permalink raw reply [flat|nested] 11+ messages in thread
* [glibc/azanella/clang] elf: Suppress clang -Wstring-plus-int on rtld.c
@ 2024-02-07 14:05 Adhemerval Zanella
0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2024-02-07 14:05 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=8f0d151e0e741008589ff2b651b107ca1e0701fb
commit 8f0d151e0e741008589ff2b651b107ca1e0701fb
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
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\
^ permalink raw reply [flat|nested] 11+ messages in thread
* [glibc/azanella/clang] elf: Suppress clang -Wstring-plus-int on rtld.c
@ 2024-01-29 17:55 Adhemerval Zanella
0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2024-01-29 17:55 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=7233f86d96be47da4995a5566b23e5dd212fd3dd
commit 7233f86d96be47da4995a5566b23e5dd212fd3dd
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
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 4f494b792e..e64da0f860 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\
^ permalink raw reply [flat|nested] 11+ messages in thread
* [glibc/azanella/clang] elf: Suppress clang -Wstring-plus-int on rtld.c
@ 2023-12-21 18:52 Adhemerval Zanella
0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2023-12-21 18:52 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=e0378feba45f8fcbd10bd1bdc909aafe7f670712
commit e0378feba45f8fcbd10bd1bdc909aafe7f670712
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
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 326286f3b2..a8b7c27603 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\
^ permalink raw reply [flat|nested] 11+ messages in thread
* [glibc/azanella/clang] elf: Suppress clang -Wstring-plus-int on rtld.c
@ 2023-09-28 17:50 Adhemerval Zanella
0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2023-09-28 17:50 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=8b6f258c17196139d3435cc09dca7a24b8706541
commit 8b6f258c17196139d3435cc09dca7a24b8706541
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
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 5107d16fe3..422a2bd021 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -2515,10 +2515,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\
^ permalink raw reply [flat|nested] 11+ messages in thread
* [glibc/azanella/clang] elf: Suppress clang -Wstring-plus-int on rtld.c
@ 2023-08-30 12:35 Adhemerval Zanella
0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2023-08-30 12:35 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=f0f8e5431042820f3c7073d42d2751a8a39ef5c4
commit f0f8e5431042820f3c7073d42d2751a8a39ef5c4
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Mar 10 09:48:32 2022 -0300
elf: Suppress clang -Wstring-plus-int on rtld.c
Diff:
---
elf/rtld.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/elf/rtld.c b/elf/rtld.c
index a91e2a4471..62cbdf20ab 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -2521,10 +2521,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 (13, "-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\
^ permalink raw reply [flat|nested] 11+ messages in thread
* [glibc/azanella/clang] elf: Suppress clang -Wstring-plus-int on rtld.c
@ 2023-02-09 19:47 Adhemerval Zanella
0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2023-02-09 19:47 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=b56c86f788d5e4baa4e425410f017e6a9a227288
commit b56c86f788d5e4baa4e425410f017e6a9a227288
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Mar 10 09:48:32 2022 -0300
elf: Suppress clang -Wstring-plus-int on rtld.c
Diff:
---
elf/rtld.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/elf/rtld.c b/elf/rtld.c
index f82fbeb132..434d4cd234 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -2530,10 +2530,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 (13, "-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\
^ permalink raw reply [flat|nested] 11+ messages in thread
* [glibc/azanella/clang] elf: Suppress clang -Wstring-plus-int on rtld.c
@ 2022-10-28 17:40 Adhemerval Zanella
0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2022-10-28 17:40 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=00fd31c527a21fd46f04d5fc4b3652bb311f9485
commit 00fd31c527a21fd46f04d5fc4b3652bb311f9485
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Mar 10 09:48:32 2022 -0300
elf: Suppress clang -Wstring-plus-int on rtld.c
Diff:
---
elf/rtld.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/elf/rtld.c b/elf/rtld.c
index 221be5c71e..7af2299c6f 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -2538,10 +2538,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 (13, "-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\
^ permalink raw reply [flat|nested] 11+ messages in thread
* [glibc/azanella/clang] elf: Suppress clang -Wstring-plus-int on rtld.c
@ 2022-10-04 12:58 Adhemerval Zanella
0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2022-10-04 12:58 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=615b683e18cff316d6bb8879bfb249a051c78bd1
commit 615b683e18cff316d6bb8879bfb249a051c78bd1
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Mar 10 09:48:32 2022 -0300
elf: Suppress clang -Wstring-plus-int on rtld.c
Diff:
---
elf/rtld.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/elf/rtld.c b/elf/rtld.c
index 3b78f40562..613d39e398 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -2538,10 +2538,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 (13, "-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\
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-04-17 20:05 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-17 20:05 [glibc/azanella/clang] elf: Suppress clang -Wstring-plus-int on rtld.c Adhemerval Zanella
-- strict thread matches above, loose matches on Subject: below --
2024-04-02 15:52 Adhemerval Zanella
2024-02-09 17:30 Adhemerval Zanella
2024-02-07 14:05 Adhemerval Zanella
2024-01-29 17:55 Adhemerval Zanella
2023-12-21 18:52 Adhemerval Zanella
2023-09-28 17:50 Adhemerval Zanella
2023-08-30 12:35 Adhemerval Zanella
2023-02-09 19:47 Adhemerval Zanella
2022-10-28 17:40 Adhemerval Zanella
2022-10-04 12:58 Adhemerval Zanella
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).