This is the mail archive of the gcc-help@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]

Re: I have a question. This is not a bug.


On Aug  8, 2001, "Liefer, David K" <David.Liefer@MW.Boeing.com> wrote:

> Is there some detailed documentation we can download that explains in
> detail how to install/upgrade GCC/g++ on a HP-UNIX 10.20 machine?

There is the installation manual, available in the tarball and on the
web site.

> Also do we need to update libstdc and libstdc++ ?

There's no such thing as libstdc.  libstdc++ must be updated, yes; the
C++ ABI has changed, and so has the library, to become much more
standard compliant.

> The compiler works but we can't get code that previously compiled
> with version 2.95.2 to compile with version 3.0. Several things
> occur: 1). It gives all kinds of warnings about end of line
> characters missing from files. 2). Eventually drops out with errors.

These are results of lack of C++-standard compliance in your code, I
presume.  You can ignore the warnings, but you'll have to address the
errors.

> In addition, we have had problems getting any debugger to work with code
> that's been compiled (w/ debugging option ) under g++ (using gcc version
> 2.95.2 or higher). The debugger is unable to step through any of the source
> code. It just stays on the same line when you hit the next button. The
> debuggers we have tried are DDD version 3.2.1 and xxgdb version 1.12. Using
> DDD v3.2.1  we get the following warnings:

These might be problems in GCC, but they may also be bugs in GDB, the
underlying debugger that DDD and xxgdb are graphical front-ends for.
You didn't mention which version of GDB you're using, but you may want
to report the problem to the GDB mailing list.

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me


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