[Bug other/46333] problems with configure -enable-build-with-cxx -disable-bootstrap
fukanchik at gmail dot com
gcc-bugzilla@gcc.gnu.org
Wed Jan 29 12:11:00 GMT 2014
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46333
--- Comment #25 from Sergey <fukanchik at gmail dot com> ---
Sorry. I mean i am getting the following error:
> "../../gcc-4.5/libcpp/files.c", line 1193: Error: Cannot assign char* to int.
this is obstack related stuff.
The following does not compile:
obstack_free (&pfile->nonexistent_file_ob, 0);
modifying it this way:
obstack_free (&pfile->nonexistent_file_ob, (void*)0);
helps with compilation.
Also happens in symtab.c, init.c, identifiers.c.
And yes, i'm building cpp & disable bootstrap if that counts.
More information about the Gcc-bugs
mailing list