Questions tagged [debug-symbols]

A debug symbol is information that expresses which programming-language constructs generated a specific piece of machine code in a given executable module.

A debug symbol is information that expresses which programming-language constructs generated a specific piece of machine code in a given executable module. Sometimes the symbolic information is compiled together with the module's binary file, or distributed in a separate file, or simply discarded during the compilation and/or linking. This information enables a person using a symbolic debugger to gain additional information about the binary, such as the names of variables and routines from the original source code. This information can be extremely helpful while trying to investigate and fix a crashing application or any other fault.

865 questions
-1
votes
1 answer

Can't debug some subproject in microservice architecture

I have problem with debugging repository which consists of few subprojects, I add them as a reference projects, and if I add one, everything works just fine, but if I add 2 or more, then debug files (.pdb) are not creating for all of them but only…
-1
votes
1 answer

Will debug symbols affect the performance in Rust?

I'm running Rust utilities that compiled with debug symbols. cargo build # without the "--release" flag These are really slow compared to the same utilities written in C. Is it possible that the debug symbols affected the performance?
潇洒张
  • 273
  • 2
  • 9
-1
votes
1 answer

read debug/static symbols when on own process on linux without disk I/O in C/Linux?

Is it possible to read own symbol name by it's address using some API, when we assume that the whole program (and all related .so-files) has been deleted ? I found some pieces how to get this information using objdump, readelf, nm etc., but are…
Ivan Baidakou
  • 713
  • 9
  • 14
-1
votes
1 answer

Simple Injector .NET Standard NuGet package PDB

Is it possible to obtain a PDB file for the Simple Injector NuGet package? I could not find it and ended up building the simpleinjector.dll from the sources. Then updating my own projects to reference that dll.
AroglDarthu
  • 1,021
  • 8
  • 17
-1
votes
1 answer

What is the difference between between toggle breakpoint and disable breakpoint in Eclipse IDE?

There are few other questions on similar line, but I feel this is new. Thanks.
sofs1
  • 3,834
  • 11
  • 51
  • 89
-1
votes
3 answers

Can I create an attribute which will be stripped out of release code?

I want to do something like this: [Notes("Remember to blah blah blah")] public class Foo { [Notes("Redo this to include blah blah")] public string Bar { get; set; } // etc. } I know about the ConditionalAttribute, but it's sealed so I…
h bob
  • 3,610
  • 3
  • 35
  • 51
-1
votes
2 answers

dll symbol name in visual studio 2010

When debugging a c++ solution in Visual Studio 2010, It says "No symbols have been loaded for this document." And when I check in debug / modules / .dll / symbol load information It is looking for a pdb with the wrong name. So,…
akaltar
  • 1,002
  • 1
  • 19
  • 25
-3
votes
2 answers

Segmentation when NOT running on debug

as the title mentions, I have a problem where one executable of a big project that gives a segmentation fault when it runs but is compiled normally and not with debug. We are working on linux SUSE servers and code is mostly C++. Through bt in gdb, I…
thahgr
  • 718
  • 1
  • 10
  • 27
-3
votes
2 answers

Python debug print the command

Folks I am not very up with Python but have inherited a load of Python scripts One of which is given me a issue in that I am not 100% sure what one line is running What I need to do is print out the command line and its variables. The line in…
-7
votes
1 answer

Symbol eliminated by linker

Shape_class=class(tobject) Constructor create; Destructor Demolish; Public Shape:tshape; Shape_width, Shape_height, Shape_left, Shape_top:integer; End; Function add_shape :Shape_class; Begin Result:=shape_class.create; End; The…
Muscipula
  • 55
  • 2
  • 10
1 2 3
57
58