Suppress warning: conversion from a string literal to "char *" is deprecated

Hello all, I have a CUDA C piece of code in which I use the following function (prototype):

int getparlong (char *name, long *p);

and inside the code I call it as:

long nz;
getparlong(“nz”, &nz);

which works but gives the following warning during compilation:

warning: conversion from a string literal to “char *” is deprecated

I know that the best approach would be to correct the function call to “const char*” but I would prefer not to touch these modules. Is there a way to disable only this warning with nvcc? The -w flag works but suppresses all warnings, which is undesirable.

I am using nvcc from CUDA 11.4 .

Thanks

Personal opinion: There is never a good excuse for not cleaning up cruft. That stuff tends to accumulate. I have seen code with twenty years of accumulated cruft, and it is nearly impossible to maintain, at which point even experts do not want to touch it with a ten foot pole.

I have not tried this myself, but supposedly one can use this compilation flag to get the diagnostic ID for diagnostics emitted by the EDG-derived frontend:

-Xcudafe --display_error_number

Once one has a diagnostic’s ID, suppress it with:

-Xcudafe --diag_suppress=<diagnostic_id>

I am not entirely sure that the diagnostic you are seeing is emitted by FE, but it looks like the kind of diagnostics FE generates, so worth a try.

If this is instead a diagnostic emitted by the host compiler during compilation of host code, use the -Xcompiler flag of nvcc to pass a diagnostic disabling switch to the host compiler. For MSVC this would be /wd<diagnostic_id>. I do not recall whether gcc exposes diagnostic IDs or whether one has to first find the specific name of the diagnostic, and then use -Wno-<diagnostic_name>. I always use -Wall with gcc, so these details escape me.

[Later:]

The internet tells me the relevant gcc switch is -W{no-}write-strings.

Thanks! -Xcompiler "-Wno-write-strings" was the first thing I tried,

nvcc -ccbin=g++ -Xcompiler "-Wno-write-strings" -c mycode.cu 

or

nvcc -ccbin=gcc -Xcompiler "-Wno-write-strings" -c mycode.cu 

but they had no effect, and emit the warning:

...
warning : conversion from a string literal to "char *" is deprecated
...

It probably does not work because the warning is emitted by
cudafe as you pointed. For the purpose of the question,

nvcc -ccbin=g++ -Xcudafe --display_error_number -c mycode.cu 

gives

...
warning #2464-D: conversion from a string literal to "char *" is deprecated
...

and then

nvcc -ccbin=g++ -Xcudafe --diag_suppress=2464 -c mycode.cu 

suppresses the “string literal” warning and keeps all the other ones. Thanks!

The question is answered but the best solution (yet much more laborious) may be the one given in the personal opinion. In my case, it is an old package with many modules so it is not time feasible right now. Thanks again, cheers

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.