* elf-bfd.h (struct elf_backend_data): Add
[deliverable/binutils-gdb.git] / gdb / PROBLEMS
CommitLineData
e2c9a72c 1
860660cb 2 Known problems in GDB 6.2
e2c9a72c 3
36cc83a3 4 See also: http://www.gnu.org/software/gdb/bugs/
e2c9a72c 5
e6beb428 6
43e2e1a0
AC
7*** Build problems
8
5191de37 9build/1458: compile failed on hpux11
43e2e1a0 10
5191de37
MC
11GDB has build problems on HP/UX 11 with some versions of the HP
12Ansi C compiler. (GCC works fine).
13
14The problem happens when compiling intl/bindtextdom.c.
15The error is:
16
17 cc: "gettextP.h", line 50: error 1000: Unexpected symbol: "SWAP".
18 cc: panic 2017: Cannot recover from earlier errors, terminating.
19 *** Error exit code 1
20
21This is a problem with the 'inline' keyword in gettextP.h.
22The workaround is to disable 'inline' before building gdb:
23
24 export ac_cv_c_inline=no
25
26This problem happens only with some versions of the HP Ansi C compiler.
27Versions A.11.01.25171.GP and B.11.11.28706.GP have both been observed
28to work; version B.11.11.04 gets the build error and needs the
29workaround.
30
31This problem might also happen with other C compilers.
43e2e1a0 32
103a0089 33*** Misc
e6beb428 34
103a0089 35gdb/1560: Control-C does not always interrupt GDB.
e6beb428 36
103a0089
AC
37When GDB is busy processing a command which takes a long time to
38complete, hitting Control-C does not have the expected effect.
39The command execution is not aborted, and the "QUIT" message confirming
40the abortion is displayed only after the command has been completed.
41
05ee07c7
AC
42mips-irix broken:
43
44Due to problems with both BFD (sections not being correctly
45recognized) and GDB (backtraces failing), GDB 6.2 does not work on
46MIPS IRIX.
47
103a0089 48*** C++ support
ed47347a 49
ed47347a
MC
50gdb/931: GDB could be more generous when reading types C++ templates on input
51
52When the user types a template, GDB frequently requires the type to be
53typed in a certain way (e.g. "const char*" as opposed to "const char *"
54or "char const *" or "char const*").
55
ed47347a
MC
56gdb/1512: no canonical way to output names of C++ types
57
58We currently don't have any canonical way to output names of C++ types.
59E.g. "const char *" versus "char const *"; more subtleties arise when
60dealing with templates.
61
c6e06ede
MC
62gdb/1516: [regression] local classes, gcc 2.95.3, dwarf-2
63
64With gcc 2.95.3 and the dwarf-2 debugging format, classes which are
65defined locally to a function include the demangled name of the function
66as part of their name. For example, if a function "foobar" contains a
67local class definition "Local", gdb will say that the name of the class
68type is "foobar__Fi.0:Local".
69
70This applies only to classes where the class type is defined inside a
71function, not to variables defined with types that are defined somewhere
72outside any function (which most types are).
73
8c691c7a
DC
74gdb/1588: names of c++ nested types in casts must be enclosed in quotes
75
76You must type
77 (gdb) print ('Foo::Bar') x
78or
79 (gdb) print ('Foo::Bar' *) y
80instead of
81 (gdb) print (Foo::Bar) x
82or
83 (gdb) print (Foo::Bar *) y
84respectively.
85
e8ac10a6
MC
86gdb/1091: Constructor breakpoints ignored
87gdb/1193: g++ 3.3 creates multiple constructors: gdb 5.3 can't set breakpoints
e2c9a72c 88
e8ac10a6
MC
89When gcc 3.x compiles a C++ constructor or C++ destructor, it generates
902 or 3 different versions of the object code. These versions have
91unique mangled names (they have to, in order for linking to work), but
92they have identical source code names, which leads to a great deal of
93confusion. Specifically, if you set a breakpoint in a constructor or a
94destructor, gdb will put a breakpoint in one of the versions, but your
95program may execute the other version. This makes it impossible to set
96breakpoints reliably in constructors or destructors.
97
98gcc 3.x generates these multiple object code functions in order to
99implement virtual base classes. gcc 2.x generated just one object code
100function with a hidden parameter, but gcc 3.x conforms to a multi-vendor
101ABI for C++ which requires multiple object code functions.
589ca796 102
73cc75f3
AC
103*** Signal handlers
104
105On many systems an attempt to single-step a system-call instruction
106results in two or more instructions being executed (the system-call,
107and one or more instructions following).
108
109When attempting to single-step through a signal trampoline, this
110problem may result the program unintentionally running to completion,
111or re-execute the faulting instruction, or even corrupting the program
112counter.
113
114Ref: PR breakpoints/1702.
115
103a0089
AC
116*** Stack backtraces
117
72b56458
AC
118GDB's core code base has been updated to use a new backtrace
119mechanism. This mechanism makes it possible to support new features
120such DWARF 2 Call Frame Information (which in turn makes possible
121backtraces through optimized code).
122
123Since this code is new, it is known to still have a few problems:
124
103a0089
AC
125gdb/1505: [regression] gdb prints a bad backtrace for a thread
126
72b56458
AC
127When backtracing a thread, gdb does not stop when it reaches the
128outermost frame, instead continuing until it hits garbage. This is
129sensitive to the operating system and thread library.
536517dd
MC
130
131*** Threads
132
133threads/1650: manythreads.exp
134
0dea2468
AC
135On GNU/Linux systems that use the old LinuxThreads thread library, a
136program rapidly creating and deleting threads can confuse GDB leading
137to an internal error.
138
139This problem does not occur on newer systems that use the NPTL
140library, and did not occur with GDB 6.1.
This page took 0.186748 seconds and 4 git commands to generate.