active questions tagged pdb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T16:06:22Z http://stackoverflow.com/feeds/tag/pdb http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1630098/windbg-private-pdb-symbols 1 windbg: private pdb symbols Bin Chen 2009-10-27T11:07:39Z 2009-12-10T00:47:52Z <p>what is the difference between (private pdb symbols) and (pdb symbols)?</p> http://stackoverflow.com/questions/1852427/why-is-pdb-displaying-blank-or-comment-when-i-try-to-set-a-break 1 Why is pdb displaying "*** Blank or comment" when I try to set a Break? BryanWheelock 2009-12-05T15:05:20Z 2009-12-05T15:22:47Z <p>I'm working with my Django app. For some reason an element of a list is being assigned incorrectly.</p> <p>I'm trying to set a break where I think the error is occurring. ( line 20 )</p> <p>I'm invoking pdb with this line of code:<br> import pdb; pdb.set_trace()</p> <p>However, inside the code, I can't seem to set a Break.<br> <code>(Pdb) b 20<br> *** Blank or comment<br> (Pdb) break 20<br> *** Blank or comment </code></p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1841351/how-to-include-pdb-files-in-msi-installer-to-deploy-along-side-the-rest-of-the-ap 0 How to include pdb files in MSI installer to deploy along side the rest of the app? m3ntat 2009-12-03T17:03:18Z 2009-12-04T10:44:59Z <p>How to include pdb files in MSI installer to deploy along side the rest of the app?</p> <p>I want to keep the line numbers and full stack trace in error logs we generate.</p> <p><strong>Update</strong></p> <p>The line numbers of the code are not reported in the stacktrace unless you distribute the pdb's, I've tested this.</p> <p>How can when I build the MSI and I've asked the MSI installer project to include various project outputs (about 5) to also include the pdb's of those project outputs in the MSI? or how to get this information (code line numbers) from the Exception ex into the logs?</p> http://stackoverflow.com/questions/1786970/debugging-a-dll-from-vs2008-in-vc6 0 Debugging a DLL from VS2008 in VC6 IndianaJ 2009-11-24T00:08:16Z 2009-11-24T00:49:59Z <p>I am currently debugging a project in VC6 (slowly porting it over to VS2008). The project links to a DLL that I have produced in VS2008 with a Debug build. (I know - a strange situation to find myself in.) I need to debug the project in VC6 and step into the calls to the DLL. Even though I have the PDB alongside the DLL, VC6 still reports there is no symbolic info for the DLL when it loads it. Does anyone know why? Is the PDB from VS2008 not loadable by VC6? Any ideas gratefully received...</p> http://stackoverflow.com/questions/1780266/ironpython-and-pdb-settrace 1 IronPython and pdb.set_trace() Mike Gates 2009-11-22T22:34:34Z 2009-11-23T05:26:53Z <p>Does anyone know if IronPython 2.6 is planned to have support for pdb.set_trace() to enable setting breakpoints in an ironpython module? If not does anyone have a suggestion for accomplishing this without pdb?</p> http://stackoverflow.com/questions/1757385/how-can-i-get-all-the-pdb-files-in-the-same-folder 0 How can I get all the .pdb files in the same folder? uvts_cvs 2009-11-18T16:48:13Z 2009-11-18T17:12:30Z <p>I have a solution in Visual Studio 2008, it has dozens of projects.</p> <p>I would like to have all the pdb in the same folder.</p> <p>From the property page of a project I see that the pdb will go to the "Intermediate Directory"; also .obj files go to the "Intermediate Directory".</p> <p>Each of our projects has its own folder because we want to keep the .obj separated, at the same time I would like to have all the pdb in the same folder.</p> <p>Looking at the buildlog.htm I see the option /PDB which controls the pdb path, this option doesn't seem to me available in the property page.</p> <p>Maybe I will have to use a post buil script?</p> http://stackoverflow.com/questions/1737111/c-debug-problem-pdb-file 0 C++ Debug Problem - pdb file Liran 2009-11-15T09:46:33Z 2009-11-15T15:44:54Z <p>I have several DLLs in my project that are defined to create their *.pdb file (debug info) inside the same folder. The problem is that the only *.pdb file that actually exist inside this folder is the one that belongs to the last compiled DLL. As a result I can debug only the last project (each compilation deletes all the *.pdb in the folder and creates the current compiled DLL pdb file.)</p> <p>How can I resolve it ? I'm using Visual Studio 2003.</p> http://stackoverflow.com/questions/1700229/any-tutorial-for-python-palmdb-library 0 Any tutorial for Python PalmDB library? roddik 2009-11-09T10:33:10Z 2009-11-09T18:34:53Z <p>Hello, I've downloaded the <a href="http://sourceforge.net/projects/pythonpalmdb/" rel="nofollow">Python PalmDB</a> lib, but can't find any info on how to use it. I've tried reading docstrings and so far I've been able to come up with the following code:</p> <pre><code>from pprint import pprint from PalmDB.PalmDatabase import PalmDatabase pdb = PalmDatabase() with open('testdb.pdb','rb') as data: pdb.fromByteArray(data.read()) pprint(dir(pdb)) pprint(pdb.attributes) print pdb.__doc__ #print pdb.records print pdb.records[10].toXML() </code></pre> <p>which gives me the xml representation of a record (?) with some nasty long <code>payload</code> attribute, which doesn't resemble any kind of human-readable text to me. I just want to read the contents of the pdb file. Is there a guide/tutorial for this library? What would you do to figure out the proper way to make things done in my situation?</p> http://stackoverflow.com/questions/1697739/how-to-open-a-pdb-file-in-python 0 How to open a pdb file in Python? roddik 2009-11-08T20:03:56Z 2009-11-08T20:15:41Z <p>Hello, I've got an e-book (viewable with isilo) in a pdb file. Is it possible to read it's contents with Python (perl, ruby, php)?</p> http://stackoverflow.com/questions/1628588/finding-symbols-for-c-source-file 0 Finding symbols for C++ source file Bin Chen 2009-10-27T03:15:27Z 2009-10-27T03:28:09Z <p>Hi, I have a project that is C++ WIN32 project. I found a problem that some symbol can be recognized by the windbg but some don't. I don't know why. The characteristics are:</p> <p>1) both are C++ method </p> <p>2) both function are in one .cpp file </p> <p>3) the two functions are very close in the source file and neither of them are enclosed by a #ifdef </p> <p>4) I have used dbh.exe to check the symbol, the symbol missing in the windbg is also not in the pdb file. </p> <p>I am guessing if the symbol missing may due to the inheritance of the class? Please suggest, thanks! Bin </p> http://stackoverflow.com/questions/1614983/running-commands-from-a-file-in-pdb 0 Running commands from a file in PDB justintime 2009-10-23T17:49:42Z 2009-10-23T21:17:24Z <p>I would like to run a set of python commands from a file in the PDB debugger. Related to this, can I set up a file that is automatically run when PDB starts?</p> http://stackoverflow.com/questions/1605671/can-delphi-5-generate-a-pdb-file-that-vs-can-use 2 Can Delphi 5 generate a .PDB file that VS can use? Vilx- 2009-10-22T08:08:38Z 2009-10-22T11:26:24Z <p>We've got this large application written in Delphi 5, and development is ongoing to this day. There is research going on into migrating to newer versions, but so far there is no success, as some 3rd party components have not been updated in ages and do not work on later versions.</p> <p>In the meantime however people need to continue work on it. Now Delphi 5 IDE is no real treat. It's pretty bug-ridden and lacks a lot of features of contemporary IDEs which makes it difficult to use. Especially when it comes to debugging.</p> <p>So I was wondering - would it be possible to use Visual Studio in the process? As far as I know the .PDB file format is pretty old and is well documented. Could it be possible to make the Delphi compiler to somehow generate a .PDB files for it's compiled results? Then the program could be debugged with Visual Studio, possibly to a much greater extent than in the original IDE.</p> <p>Well, the absolute Holy Grail would be to move all development to VS, just keeping the compiler from Delphi, but I imagine that would be pretty impossible.</p> http://stackoverflow.com/questions/1576266/python-pdb-not-breaking-in-files-properly 0 python pdb not breaking in files properly? YGA 2009-10-16T05:39:53Z 2009-10-17T00:11:11Z <p>Hi Folks,</p> <p>I wish I could provide a simple sample case that occurs using standard library code, but unfortunately it only happens when using one of our in-house libraries that in turn is built on top of sql alchemy.</p> <p>Basically, the problem is that this <code>break</code> command:</p> <pre><code>(Pdb) print sqlalchemy.engine.base.__file__ /prod/eggs/SQLAlchemy-0.5.5-py2.5.egg/sqlalchemy/engine/base.py (Pdb) break /prod/eggs/SQLAlchemy-0.5.5-py2.5.egg/sqlalchemy/engine/base.py:946 </code></pre> <p>Is just being totally ignored, it seems, by <code>pdb</code>. As in, even though I am <em>positive</em> the code is being hit (both because I can see log messages, and because I've used <code>sys.settrace</code> to check which lines in which files are being hit), <code>pdb</code> is just not breaking there.</p> <p>I suspect that somehow the use of an egg is confusing <code>pdb</code> as to what files are being used (I can't reproduce the error if I use a non-egg'ed library, like <code>pickle</code>; there everything works fine).</p> <p>It's a shot in the dark, but has anyone come across this before?</p> <p>Thanks, /YGA</p> http://stackoverflow.com/questions/1525648/how-can-i-convert-private-pdb-to-public-pdb 0 How can I convert private pdb to public pdb? msh 2009-10-06T13:37:27Z 2009-10-07T08:17:17Z <p>Hello all,</p> <p>I have private pdb file and I have to convert it to a public one. Is there tool for it?</p> <p>Thank you in advance.</p> http://stackoverflow.com/questions/1518073/embed-pdb-into-assembly 7 Embed pdb into assembly Konstantin 2009-10-05T02:48:07Z 2009-10-06T11:25:17Z <p>Hi!</p> <p>I want my application to be distributable as a <em>single .exe file</em> but I want to be able to get nice error reports with source code line numbers (the application simply sends email with <code>exception.ToString()</code> and some additional information when unhandled exception occurs).</p> <p>Is there any way to embed .pdb into assembly?</p> http://stackoverflow.com/questions/1420123/wrong-line-numbers-in-stack-trace-release 1 Wrong line numbers in stack trace (release) xoposhiy 2009-09-14T07:25:38Z 2009-09-14T19:34:32Z <p>Sometimes we receive stack traces from our customer with wrong line numbers. It happens not so often, but sometimes it puzzles us.</p> <p>Customers have release assemblies with optimizations and with "pdb only" debug information.</p> <p>And yes, we compare line numbers with exactly the same version of code the customer has.</p> <p>And yes, customer has right pdb files.</p> <p>And no, this difference in line numbers can't be explained with the method inlining (compiler optimization).</p> <p>And no, we don't use any AOP tools, like PostSharp.</p> <p>Any ideas why does it happen?</p> http://stackoverflow.com/questions/1407697/symaddsourcestream-questions 0 SymAddSourceStream questions Kirill Kovalenko 2009-09-10T21:01:47Z 2009-09-10T21:01:47Z <p>Did I get it right that SymAddSourceStream function is an equivalent of pdbstr.exe command line tool that comes with MS Source Server?</p> <p>I wrote a test that does SymInitialize/SymLoadModule64/ SymAddSourceStream/SymUnloadModule64/SymCleanup calls sequence and it works without errors, however the target pdb file remains unchanged.</p> <p>Does anybody have an example of proper SymAddSourceStream usage?</p> http://stackoverflow.com/questions/1237379/how-do-i-set-sys-excepthook-to-invoke-pdb-globally-in-python 1 How do I set sys.excepthook to invoke pdb globally in python? saffsd 2009-08-06T07:15:46Z 2009-08-26T17:48:08Z <p>From Python docs:</p> <blockquote> sys.excepthook(type, value, traceback)¶<p> This function prints out a given traceback and exception to sys.stderr. When an exception is raised and uncaught, the interpreter calls sys.excepthook with three arguments, the exception class, exception instance, and a traceback object. In an interactive session this happens just before control is returned to the prompt; in a Python program this happens just before the program exits. The handling of such top-level exceptions can be customized by assigning another three-argument function to sys.excepthook. </blockquote> <p><a href="http://docs.python.org/library/sys.html" rel="nofollow">http://docs.python.org/library/sys.html</a></p> <p>How do I modify this globally so the default action is to always invoke pdb? Is there a configuration file I can change? I don't want to wrap my code to do this.</p> http://stackoverflow.com/questions/1328836/include-line-numbers-in-stack-trace-without-pdb 3 include line numbers in stack trace without pdb? JoelFan 2009-08-25T14:55:31Z 2009-08-25T16:24:14Z <p>We are currently distributing a WinForms app without .pdb files to conserve space on client machines and download bandwidth. When we get stack traces, we are getting method names but not line numbers. Is there any way to get the line numbers without resorting to distributing the .pdb files?</p> http://stackoverflow.com/questions/1318676/in-pdb-how-do-you-reset-the-list-l-command-line-count 6 In pdb how do you reset the list (l) command line count? Jorge Vargas 2009-08-23T14:13:40Z 2009-08-24T19:42:51Z <p>From PDB</p> <pre><code>(Pdb) help l l(ist) [first [,last]] List source code for the current file. Without arguments, list 11 lines around the current line or continue the previous listing. With one argument, list 11 lines starting at that line. With two arguments, list the given range; if the second argument is less than the first, it is a count. </code></pre> <p>The "continue the previous listing" feature is really nice, but how do you turn it off?</p> http://stackoverflow.com/questions/1261668/cannot-override-sys-excepthook 0 cannot override sys.excepthook Mert Nuhoglu 2009-08-11T16:58:23Z 2009-08-11T18:18:53Z <p>I try to customize behavior of sys.excepthook as described by <a href="http://mail.python.org/pipermail/python-list/2001-April/079168.html" rel="nofollow">the recipe</a>. </p> <p>in ipython:</p> <pre><code>:import pdb, sys, traceback :def info(type, value, tb): : traceback.print_exception(type, value, tb) : pdb.pm() :sys.excepthook = info :-- &gt;&gt;&gt; x[10] = 5 ------------------------------------------------- Traceback (most recent call last): File "&lt;ipython console&gt;", line 1, in &lt;module&gt; NameError: name 'x' is not defined &gt;&gt;&gt; </code></pre> <p>pdb.pm() is not being called. It seems that sys.excepthook = info doesn't work in my python 2.5 installation. </p> <p>What should I look into? Any suggestion?</p> <p>Thank you</p> http://stackoverflow.com/questions/1230715/how-to-read-pdb-format-by-javascript 0 How to read pdb format by javascript? Ted Wong 2009-08-05T01:16:26Z 2009-08-07T21:08:07Z <p>I know that it is a databases in Palm OS, as the development is shift to webOS. Is there any third party javascript library to do the work? or it needs to write manually? </p> http://stackoverflow.com/questions/216012/is-there-a-good-c-crash-reporting-library-that-works-well-with-visual-studio-20 3 Is there a good C++ crash reporting library that works well with Visual Studio 2005? Dr Dork 2008-10-19T04:30:32Z 2009-08-07T05:44:45Z <p>After reading <a href="http://stackoverflow.com/questions/36127/any-recommended-vc-settings-for-better-pdb-analysis-on-release-builds">this previous discussion</a> and <a href="http://stackoverflow.com/questions/49224/good-crash-reporting-library-in-c">this one</a>, it looked as though <a href="http://code.google.com/p/crashrpt/" rel="nofollow">Crashrpt</a> was exactly what I was looking for, but it seems it's no longer being maintained and, after playing with it, found it doesn't work well with Visual Studio 2005.</p> <p>Is anyone using Crashrpt with Visual Studio 2005?</p> <p>If not, can anyone recommend a good C++ solution for automating the process of...</p> <ol> <li>generating a detailed and readable crash dump and</li> <li>zipping it up along with any other specified log files and</li> <li>emailing the zipped up package to the developers</li> </ol> <p>Thanks in advance!</p> http://stackoverflow.com/questions/162192/visual-studio-2008-add-reference 9 Visual Studio 2008 - Add Reference James Sun 2008-10-02T13:13:33Z 2009-07-28T03:01:45Z <p>When adding a DLL as a reference to an ASP.Net project, VS2008 adds several files to the bin directory. If the DLL is called foo.dll, VS2008 adds foo.dll.refresh, foo.pdb and foo.xml. I know what foo.dll is :-), why does VS2008 add the other three files? What do those three files do? Can I delete them? Do they need to be added in source control?</p> http://stackoverflow.com/questions/1139227/show-definition-browse-in-pdb-of-dll-file 0 show definition (browse) in *.pdb of *.dll file ala 2009-07-16T17:51:59Z 2009-07-24T14:05:17Z <p>I have built a Library project (DLL) in .NET. And sometimes I use the DLL along with its PDB file as a reference in some other projects. </p> <p>Now in the new project, I cant browse through the code of the DLL to debug. I can only see the definitions of class/methods/variables. That's by using "show definition" by browsing through the "class view"</p> <p>However, only in case of an exception I the contents of the DLL opens and I could see the entire code of the DLL from the new project. </p> <p>How could I see the contents (code) of the DLL before an exception occur?</p> http://stackoverflow.com/questions/665225/how-to-get-stack-trace-information-for-logging-in-production-when-using-the-gac 0 How to get stack trace information for logging in production when using the GAC Jonathan Parker 2009-03-20T07:15:31Z 2009-07-21T16:17:29Z <p>I would like to get stack trace (file name and line number) information for logging exceptions etc. in a production environment. The DLLs are installed in the GAC. Is there any way to do this?</p> <p><a href="http://www.elumenotion.com/Blog/Lists/Posts/Post.aspx?ID=23" rel="nofollow">This article</a> says about putting PDB files in the GAC:</p> <blockquote> <p>You can spot these easily because they will say you need to copy the debug symbols (.pdb file) to the GAC. In and of itself, that will not work.</p> </blockquote> <p>I know this article refers to debugging with VS but I thought it might apply to logging the stacktrace also.</p> <p>I've followed the instructions for the answer to <a href="http://stackoverflow.com/questions/628565/">this question</a> except for unchecking Optimize code which they said was optional.</p> <p>I copied the dlls and pdbs into the GAC but I'm still not getting the stack trace information. Here's what I get in the log file for the stack trace:</p> <pre><code>OnAuthenticate at offset 161 in file:line:column &lt;filename unknown&gt;:0:0 ValidateUser at offset 427 in file:line:column &lt;filename unknown&gt;:0:0 LogException at offset 218 in file:line:column &lt;filename unknown&gt;:0:0 </code></pre> <p>I'm using NLog.</p> <p>My NLog layout is:</p> <pre><code>layout="${date:format=s}|${level}|${callsite}|${identity}|${message}|${stacktrace:format=Raw}" </code></pre> <p>${stacktrace:format=Raw} being the relevant part.</p> http://stackoverflow.com/questions/1126930/is-it-possible-to-go-into-ipython-from-code 4 Is it possible to go into ipython from code? Geo 2009-07-14T17:45:59Z 2009-07-15T00:40:39Z <p>For my debugging needs,<strong>pdb</strong> is pretty good. However, it would be <strong>MUCH</strong> cooler ( and helpful ) if I could go into ipython. Is this thing possible?</p> http://stackoverflow.com/questions/933883/are-there-any-security-issues-leaving-the-pdb-debug-files-on-the-live-servers 3 Are there any security issues leaving the PDB debug files on the live servers? Andy 2009-06-01T07:43:29Z 2009-07-11T10:30:30Z <p>Are there any security issues keeping the .NET PDB files on the real server?</p> <p>I know that throwing exceptions might take a bit longer , but who throws exceptions during normal execution anyway? :-) </p> <p>But from a security perspective? any issues? </p> http://stackoverflow.com/questions/1101896/updating-pdb-files-without-rebuilding 0 Updating PDB files without rebuilding. amit 2009-07-09T04:53:27Z 2009-07-09T17:08:56Z <p>Hi All,</p> <p>Is there a way to update the PDB file with the new source location ? I have a project which links to some libraries which are built on another machine and are debug build with the PDB file. I cannot put a breakpoint in the files which are compiled in the libs. These libs take more than 4 hours to build so I dont want to buid them on my machine. Is there a way where i can make the compiler use the new source paths. I am using VS 2005 pro c++. </p> <p>Thanks Amit</p> http://stackoverflow.com/questions/1003182/no-filenames-in-pdb-program-database 0 No filenames in pdb program database. Nick 2009-06-16T18:30:14Z 2009-06-23T14:46:24Z <p>I have a .pdb program database from a C++ application compiled in debug on Windows VS2005. I use the DIA SDK to find function names but I can't seem to retrieve the filenames for the symbols.</p> <p>Is there some switch I need to turn on? Does this work?!</p>