Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
6answers
3k views

Xcode 4.2 debug doesn't symbolicate stack call

I have a problem with Xcode 4.2 debugging in iOS 5 simulator/device. In iOS 4.x everything is ok. NSArray *arr=[NSArray array]; [arr objectAtIndex:100]; gives me a stack trace of hex numbers. ...
21
votes
5answers
2k views

#if DEBUG vs. Conditional(“DEBUG”)

Which is better to use, and why, on a large project: #if DEBUG public void SetPrivateValue(int value) { ... } #endif or [System.Diagnostics.Conditional("DEBUG")] public void ...
17
votes
4answers
2k views

What's the risk of deploying debug symbols (pdb file) in a production environment?

I have an application that logs exception strack traces and I wanted those stack traces to include file names and line numbers when deployed in production. I figured out how to deploy the debug ...
13
votes
7answers
22k views

Getting rid of “There is no source code available for the current location”

Ok, this is my own fault, but I can't seem to rescue myself. Whenever I try to step into a class that has fields with assignments calling into .NET code, I get a dialog box that contains this text: ...
13
votes
4answers
3k views

Problem debugging .NET code with MS's Symbol Server

when i debug my ASP.NET web site code using the Microsoft debug symbol's for .NET .. i keep getting this silly 'result' for most of the variables when i'm debugging .NET framework code (which of ...
12
votes
2answers
269 views

Light-weight Stand-Alone C# Debugger

I've been searching around the internet - and StackOverflow - for some recommendations on some lightweight .NET debuggers, but so far I haven't had a lot of luck. Some articles/posts are either pretty ...
11
votes
3answers
1k views

Release generating .pdb files, why?

A rather simple question really, but why on earth does Visual Studio 2005 generate the .pdb files when compiling in release? I won't be debugging a release build, so why are they generated?
9
votes
2answers
237 views

Should I compile release builds with debug info as “full” or “pdb-only”?

In Visual Studio 2010 for a C# project, if you go to Project Properties > Build > Advanced > Debug Info you have three options: none, full, or pdb-only. Based on the answer to this question, I ...
9
votes
5answers
2k views

C# and ASP.NET MVC: Using #if directive in a view

I've got a conditional compilation symbol I'm using called "RELEASE", that I indicated in my project's properties in Visual Studio. I want some particular CSS to be applied to elements when the ...
8
votes
4answers
3k views

Visual Studio loading symbols

I'm working on a ColdFusion project for a while now, and Visual Studio started to behave strange for me at least. I observed that when I started debugging, it built the project, it started the ...
8
votes
6answers
693 views

Xcode, no debug symbols for certain subclass

I'm using Xcode 3.2.3 and iPhone SDK So I'm trying to debug a UIView subclass, I hit a breakpoint in an overridden method and I can't see any symbols in either the GUI or gdb, just globals and ...
6
votes
4answers
208 views

How to get source file-name/line-number from a java.lang.Class object

Is it possible given a java.lang.Class instance to get the source file name and the line number at which the class has been declared? The data should be available in the .class file 's debug info. ...
6
votes
2answers
191 views

Is there a downside to leaving in debug symbols in release builds?

I'm trying to determine whether there are any downsides to building release binaries with debug symbols left in. For our release builds, we compile with -O3 at the moment and if there are any crashes, ...
6
votes
4answers
678 views

gcc : Is using -Werror and -pedantic considered good practice?

I'm just digging into the gcc manual and some things are still unclear to me: When specifying a std, should I always use -pedantic in conjunction? When using -g, it the standard level sufficient or ...
6
votes
2answers
398 views

Why are some java libraries compiled without debugging information

I've noticed recently that there's a few java libs (the JDK, joda time, iText) that compile without some/all of the debugging information. Either the local variable info is missing, or the both the ...
5
votes
0answers
1k views

How to setup/using GDB 7 on MacOS Lion with MacPorts

I run into trouble using GDB 7 (7.3) on MacOS Lion. What I did was: $ sudo port install gdb After that GDB was installed to: /opt/local/bin/ggdb But when I try to execute GDB I always receive ...
5
votes
4answers
694 views

Debugging NET Framework source code not available

I am having trouble setting up Microsoft .NET Framework source code debugging for both Visual Studio 2008 and 2010 on Windows 7 x64 (I am having similar trouble on Vista x86 too). I have followed ...
5
votes
4answers
1k views

I want to debug (set a breakpoint in) System.Web.Mvc.DefaultControllerFactory, is that possible?

I have a project that references the System.Web.Mvc assembly in the GAC. I also have the ASP.NET MVC source code from Codeplex. I want to get a better understanding of the DefaultControllerFactory by ...
4
votes
1answer
1k views

Visual Studio 2010 takes too long loading symbols, symbol file location cannot be removed

Hi all Visual Studio takes a lot of extra time loading symbols for external dlls which I'd rather not load. I have fiddled with my symbol settings in VS2008 and these settings seem to be affecting ...
4
votes
2answers
545 views

Why does gcc add symbols to non-debug build?

When I do a release build with gcc (i.e. I do not specify -g), I still seem to end up with symbols in the binary, and have to use strip to remove them. In fact, I can still breakpoint functions and ...
4
votes
3answers
614 views

Visual Studio Debugger - decrease time to attach & load symbols

Generally speaking, what are your recommendations on this? Currently takes close to 10 minutes for me to attach to a locally running IIS process hosting SharePoint 2007.
4
votes
3answers
2k views

Stepping over method without symbols - How to step into?

Using Visual Studio 2008 SP1 and a VB.NET project; I have some code which i cannot step into. The Immediate Window shows the message "Stepping over method without symbols 'Some.Namespace.Here'" How ...
4
votes
4answers
3k views

Prevent Visual Studio from trying to load symbols for a particular DLL

I have Visual Studio 2005 set up to use Microsoft's symbol servers. I also have UltraMon installed, which injects a hook DLL into every process. Whenever I start debugging my MFC application, VS ...
3
votes
1answer
72 views

getting line numbers of offending code in debug vs release builds

My understanding is that with crash dump of debug build you can get the line number of stack trace and this does not happen with release build. In order to try this, I created a very simple ...
3
votes
2answers
50 views

Is it possible to create a mono mdb from a .net pdb?

Is it possible to create a mono mdb from a .net pdb? Or do I need to build the binary with two compilers?
3
votes
1answer
63 views

LLVM translation unit

I try to understand LLVM program high level structure. I read in the book that "programs are composed of modules ,each of which correspons to tranlation unit".Can someone explain me in more details ...
3
votes
3answers
241 views

How to make profilers (valgrind, perf, pprof) pick up / use local version of library with debugging symbols when using mpirun?

Edit: added important note that it is about debugging MPI application System installed shared library doesn't have debugging symbols: $ readelf -S /usr/lib64/libfftw3.so | grep debug $ I have ...
3
votes
1answer
194 views

Unable to debug MVC source code in Visual Studio 2010

I'm trying to debug MVC source code in Visual Studio 2010 using the Microsoft Symbols Server. I've configured Debugging options as seen below: and my project is targeting .NET Framework 4.0. (as ...
3
votes
5answers
2k views

Xcode 4 Instruments doesn't show source lines

I've just started playing with Xcode 4, and found that, no matter how I setup debugging symbols in the project, Instruments refuses to display source lines for stack trace items that correspond to my ...
3
votes
3answers
452 views

Embed .pdb debug symbol information into an .exe file in Visual Studio

I am experimenting an analysis tool that can analyze executable files with embedded debug symbol information in Windows. While trying this tool on several open source projects, I realize that most of ...
3
votes
2answers
331 views

Why are my local dlls taking forever to load after setting _NT_SYMBOL_PATH?

I've setup _NT_SYMBOL_PATH and have pointed it to srv*c:\symbols*http://msdl.microsoft.com/download/symbols When starting the debugger, I notice that the Windows related dlls load quickly. ...
3
votes
1answer
166 views

How can I debug multiple apps by loading multiple symbol definitions with GDB?

I am doing embedded software development. By nature, I have 3 different applications running simultaneously that are guaranteed to run in different ranges of virtual addresses, e.g. App 1 runs on ...
3
votes
3answers
985 views

How do I debug C++0x programs in MacPorts gcc 4.5?

I have a simple c++ program I am trying to debug, but gdb cannot find the object file for the libraries (or no debug info is available), and it does not seem able to find the debug symbols for my ...
3
votes
3answers
432 views

Java jar symbol info : what is the equivalent of tdstrip?

I have a .jar file which is 1MB. Without debug info, it should be about 100KB. Now, how do I strip the debug info? Oldtimers from the borland world might remember of a tool called tdstrip which would ...
3
votes
2answers
5k views

dSYM Directories While Compiling C++ Code in MacOS

Why compiling C++ in Mac always create *.dSYM directories? Is there a way to disable that?
2
votes
1answer
70 views

How to fix backtrace line number error in C++

I got a problem while wants to trace some information on program catches exceptions. I used the function below: extern "C" void log_backtrace() { // Dump the callstack int callstack[128]; ...
2
votes
0answers
48 views

VS Studio 2010 Symbol Server Does Not Include Source Code

I have VS Studio 2010 SP1 installed and there was a time when source stepping was working great. Something has changed and now when the pdb files are downloaded they are the version that has the ...
2
votes
2answers
53 views

Would that be possible to add a JavaScript file to the page conditionally without using Server side code?

I have 2 javascript files; Project.js and Project-debug.js. When my ASP.NET is running in DEBUG mode the later should be loaded and when in RELEASE mode, the former. Would that be possible to do ...
2
votes
2answers
105 views

How operate and update a symbol server for Microsoft Windows on a closed network?

Background When working on a closed network (i.e. no internet connection), Microsoft's public symbol server isn't available during my debugging sessions. I'm most interested in the debug symbols for ...
2
votes
1answer
99 views

How to obtain the line numbers of executable lines from DWScript context map or symbol table

I am writing an IDE to use with Delphi DWScript and now have a simple debuggable script. I now want to highlight the executable lines in my source (like the blue dots at the left of the Delphi ...
2
votes
1answer
136 views

How can I know what type of debug info in elf object file

I have an elf object file I want to know which type of debugging info it contains. It was compiled with diab compiler (c source) for architecture ppc. I'm pretty sure it was built with debugging ...
2
votes
1answer
129 views

ASP.NET Remote debug

I have stumbled on stupid situation with ASP.NET web application remote debug. I'm trying to describe the situation. I have an ASP.NET application deployed on remote machine. To debug it, I've run a ...
2
votes
3answers
392 views

Visual Studio: debug information in release build

I'm tempted to include debug information in my release builds that go out to customers. As far as I see the only down side is 25% increase in the binary file size. The advantage is that I can get an ...
2
votes
1answer
127 views

Where can I create free symbol server for open source project?

My open source project it is C++ dynamic linking library. Most of bugs - crash. I want create public symbol server to simplify debugging with memory dump. See also: Setting up a Symbol Server
2
votes
1answer
1k views

Debugging in Code::Blocks doesn't seem to work - missing debugging symbols

I'm trying to debug a program in Code::Blocks. I followed this guide and this short video as far as I could, but the debugger doesn't stop at breakpoints... I saw a similar question which remained ...
2
votes
1answer
129 views

mono debug information with exceptions on debian?

I thought apt-get install mono-dbg would solve it but i was wrong. How do i get debug information with mono? i am using debian squeeze but couldnt figure it out on debian lenny or etch. I wrote a ...
2
votes
2answers
409 views

Cannot load symbols, or break in core assemblies, loading Symbols option grayed out

I've set the options "Use symbol server" and just to be certain the correct symbols were loaded, I removed the symbol cache. When running my ASP.NET application I saw the popup telling me the symbols ...
2
votes
2answers
179 views

Getting debug symbols on UNIX

On windows we can get the debug symbols using the dbgHelp library. How can we do it on UNIX/linux (with c++)? thanks :)
2
votes
2answers
613 views

define DEBUG symbol on a VS2010 Website?

I can't find where this setting is #if !DEBUG // some code #endif when I change the configuration dropdown from debug to release, I see no changes in my code, which suggests that my ...
2
votes
2answers
197 views

Bizarre behavior in gdb

I'm experiencing a very strange bug in my code. I use a variable m_requestedStructures in my program, and the debugger is accessing the wrong address when inspecting it. For example, I have in the ...

1 2 3 4