This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug bootstrap/55293] bootstrap failure: invalid conversion from 'char**' to 'const char**' [-fpermissive]


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55293

--- Comment #8 from Jonathan Wakely <redi at gcc dot gnu.org> 2012-11-13 00:15:19 UTC ---
pretty-print.c already does:

              ICONV_CONST char *inbuf = CONST_CAST (char *, ident);

and ICONV_CONST should be set to 'const' by gcc/configure (using the macros
from config/iconv.m4)

Could configure be finding GNU libiconv, with a correct signature, so
ICONV_CONST is empty, but during compilation of pretty-print.c the system
iconv.h is found instead, which needs ICONV_CONST?


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]