From: Michael Chastain Date: Mon, 25 Aug 2003 18:19:26 +0000 (+0000) Subject: 2003-08-18 Michael Chastain X-Git-Tag: gdb_6_0-2003-10-04-release~82 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a114a1801610503e2bd3d0a36a0caf0aac5066fb;p=thirdparty%2Fbinutils-gdb.git 2003-08-18 Michael Chastain * PROBLEMS: Document pr gdb/1322, the Java anonymous objfile bug. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5763685160e..081bde8ecd9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2003-08-18 Michael Chastain + + * PROBLEMS: Document pr gdb/1322, the Java anonymous + objfile bug. + 2003-08-22 Michael Chastain * config/djgpp/fnchange.lst: Remove gdb/testsuite/gdb.c++/*. diff --git a/gdb/PROBLEMS b/gdb/PROBLEMS index 74806333035..77deedc057e 100644 --- a/gdb/PROBLEMS +++ b/gdb/PROBLEMS @@ -19,3 +19,17 @@ gcc 3.x generates these multiple object code functions in order to implement virtual base classes. gcc 2.x generated just one object code function with a hidden parameter, but gcc 3.x conforms to a multi-vendor ABI for C++ which requires multiple object code functions. + +gdb/1322: "internal-error: sect_index_text not initialized" after printing a java type + +When gdb debugs a Java program which uses shared libraries, it can +generate this internal error. + +If you get this error when debugging Java, you can try working around +the problem by relinking your program with no shared libraries at all +(even the standard C library). With the GNU linker, use the "-static" +argument to do this. + +You can also try this patch for gdb: + + http://sources.redhat.com/ml/gdb-prs/2003-q3/msg00190.html