The debug-information tag has no wiki summary.
0
votes
1answer
48 views
Groovy, STS, and debug info, information, or symbols
I'm trying to include the debug information or symbols in my Groovy code so that I can use the Spring Security annotations with SpEL to access an annotated method's arguments by name. For example:
...
0
votes
1answer
42 views
Why can Eclipse not “see” the structure of a class?
I am debugging my program with apache mina 2.0.2. The specific library is irrelevant.
The problem is that Eclipse can see internal structure of some classes and cannot see one of the others. No ...
3
votes
1answer
231 views
Figure out pattern in order to find variables in compiled program
I need to extract the global variables from a compiled c program. What am I doing right now is using the Linux readelf command in order to get that information. In other words when I do:
...
0
votes
1answer
631 views
objdump/readelf get variables information
I need to get the information about global variables from a compiled c program. I asked a similar question in here.
The problem that I have now is that the program where I am trying to extract the ...
0
votes
3answers
157 views
What is Debug Info?
I am an intermediate C programmer who is learning his way around. I recently learned using GDB (forced to actually) and also am doing some code using Ptrace.
I was browsing through some code on ptrace ...
3
votes
3answers
769 views
Simple Way to Send Debug Info to Visual Studio Output Window
I started a blank project in Visual Studio 2010 to write a C application. How can I send debug information to the Output window? Is there a relatively simple way to implement TRACE or ...
2
votes
1answer
652 views
Any Java counterpart for `/usr/bin/strip`?
Is there any tool that can remove debug info from Java .class files, just like /usr/bin/strip can from C/C++ object files on Linux?
EDIT: I liked both Thilo's and Peter Mmm's answers: Peter's was ...
2
votes
0answers
127 views
Is there a way to preserve debug information for a static library that is purely an aggregate of other static libraries?
I have a project that builds a static library that is purely an aggregate of other static libraries. This is achieved by adding the input libraries to the project as files. However, even if debug ...
4
votes
4answers
2k views
Displaying exception debug information to users
I'm currently working on adding exceptions and exception handling to my OSS application. Exceptions have been the general idea from the start, but I wanted to find a good exception framework and in ...
2
votes
1answer
165 views
Is there any way to get Delphi to read other debug formats?
When I'm debugging something in Delphi and there's a system library in the stack trace, I've got the name of the library and the function that's being called into. Unfortunately, this doesn't seem to ...