This PDB is Microsoft's "Program Database" format for debugging symbols, stored in files with a `.pdb` extension.

learn more… | top users | synonyms

0
votes
1answer
15 views

How do I make DIA release its lock on a pdb file?

How do I make DIA release its lock on a pdb file? I load a pdb and create a session as shown below, and it all works fine, I can use the session to get data from the pdb. When I'm finished with the ...
0
votes
1answer
29 views

How to ignore the error message “cannot find pdb files”?

I am asking this question because obviously I have searched the internet and whenever some guy puts up a question about the missing dll files the most common answer is "to ignore it" because its not ...
1
vote
0answers
21 views

PDB files do not include all .net source information

This may come down to my misunderstanding of PDB files and the build process, rather than any particular problem but I've struggled to find a good answer elsewhere. We have recently been good little ...
3
votes
2answers
34 views

LNK1201 Visual C++ 2010 Large project failing to generate PDB

We have gone through the points listed on MSDN WRT to this error ( except for #5 ). Three different people on different machines are getting the same problem. The PDB is created, but fails somewhere ...
2
votes
1answer
128 views

Removing .pdb from ASP.NET app on IIS breaks application

I'm trying to deploy an ASP.NET MVC 4 application to IIS 8. When built with Debug mode selected in VS 2012, the application runs fine on IIS. However, when Release mode is selected, the application ...
0
votes
1answer
92 views

PDBs: What is the C:\Windows\Symbols\dll directory?

I know about debugging symbols (PDBs), the MS Symbol Server and the caching of symbols. What I do not get is which symbols (by whom) go into the C:\Windows\Symbols\dll directory. It doesn't seem ...
0
votes
0answers
35 views

What is this ghost file in my pdb and how do I remove it?

Using Visual Studio 2012, I compile a DLL, and generate the pdb file that goes with it( Generate Debug info : pdb-only) . This pdb file needs to consistent with what is inside the dll and the source ...
1
vote
2answers
76 views

How do I get the parameters passed in to the constructor of an attribute?

I'm working on a documentation generator. MSDN documentation shows the parameters passed to Attributes when they are applied. Such as [ComVisibleAttribute(true)]. How would I get those parameter ...
0
votes
1answer
98 views

How to create stripped pdb from static library?

I link to a static library (3rd party) and get a LNK4099 warning: .Pdb not found Is there any way to create a stripped pdb for this library? I do not require debug info from this specific library, ...
2
votes
2answers
218 views

Disable C++ PDB generation from the IDE

We need to surpress generation of debug symbols. The options availble under project properties/ configuration properties / c/c++ / general / debug information format, are equivalent to /Z7, /Zi and ...
2
votes
1answer
60 views

What causes symbols not to load from a PDB file?

Step 1: I build myProgram.exe and generate myProgram.pdb alongside it. Step 2: I deliberately cause a crash in myProgram.exe. Step 3: I get asked if I want to use Visual Studio as a debugger, and I ...
0
votes
0answers
61 views

Why debugging in Release mode is possible if the order of execution differ from source code?

I don't understand how debugging in Release mode may be possible if the order of execution in executable may not match the source code because of the optimization. As the result, debugging with ...
0
votes
1answer
88 views

source code does not appear after setting up remote debugging

I am trying to land my ASP.NET site onto the server. My code runs locally without any bugs, but there are bugs when I try to run it from the server. So I installed and set up Visual Studio's remote ...
1
vote
0answers
51 views

Where can I get the Visual Studio PDB files for ActivePython builds?

I currently have ActivePython-2.7.2.5-win32-x86.msi installed on my computer and python.exe is hanging. I won't go into all of the details of this hang, but in order to continue debugging I have ...
0
votes
0answers
117 views

Find location of souce code file using Reflection/PDB files

I am writing an application that reads an assembly provided to it and extracts information about the classes, methods, properties, etc and create UML diagrams. I want the corresponding source-code ...
0
votes
4answers
331 views

Debug in VS C++ with dll, pdb files and source

A question about pdb file. Is pdb file for debugging in Visual Studio? If so, why do they also exist in my Release folder? It's normal that pdb files are in Debug folder, but why they are also in ...
1
vote
0answers
168 views

Researching RPC calls of mspdbsrv

mspdbsrv.exe is a utility used internally by Microsoft to update PDB files. The compiler sends symbols updates to mspdbsrv through RPC, and mspdbsrv in turn updates the PDB file. I'm trying to ...
1
vote
1answer
945 views

ASP.NET publish trying to copy a non-existant file

I'm trying to publish an ASP.NET project in VS2010, and am getting the following error: Copying file bin\CKFinder.pdb to obj\Release\Package\PackageTmp\bin\CKFinder.pdb failed. Could not find file ...
2
votes
1answer
185 views

Is there any way I can mirror Microsoft's symbol server internally?

We have an internal, isolated lab network that does not have internet access. We often run various tools on PCs on this network that require symbols corresponding to the Windows/MSVC(pp)/MFC binaries ...
0
votes
1answer
201 views

How to read source path from pdb

How can you read the source paths used to compile a pdb in .NET (C#) environment?
1
vote
1answer
51 views

Is there a direct correlation between dll and pdb size?

I'll start by saying that this isn't a problem, just curiosity. I have some .NET dlls in my program, and I'm seeing a 200-500 % size increase for the pdb size. From that, I'm trying to do a back of ...
1
vote
0answers
224 views

How to use the DIA SDK to read *code* (specifically including jump tables)?

I'm using the DIA SDK from C#. Right now I have something like: static void Main(string[] args) { var v = new DiaSource(); v.loadDataForExe("Temp.exe", null, null); // native, with symbols ...
2
votes
1answer
254 views

Convert DBG into PDB?

i have a Win32 compiler which, for years, has been able to create a DBG debug information file. This has allowed debuggers, and tools like Process Explorer and Process Monitor to have access to ...
0
votes
0answers
164 views

Any tool to check the content of PDB file [duplicate]

Possible Duplicate: What is the structure of a PDB file? What streams does a pdb contain? just out of curiosity I am wondering if there is tool to check the content of PDB symbol file?
3
votes
0answers
176 views

VS2008 PDB file size limit redux: LNK1201, too

What is the size limit on PDB files in VS2k8? I am on a dev workstation with 3GB each of RAM and pagefile on a 32-bit PAE kernel, but the linker kicks out an LNK1201 error shortly after the PDB grows ...
0
votes
1answer
256 views

Creating PDB out of DLL

I'm debugging an application that loads DLLs I didn't compile, but they have some exported functions. Is it possible to generate PDBs from the DLLs so I will be able to see the exported functions ...
1
vote
4answers
2k views

No symbols have been loaded and pdb file missing

I'm trying to understand why I get the "The breakpoint will not currently be hit. No symbols have been loaded for this document" message, when try to debug my web site application (note: no web ...
1
vote
1answer
101 views

AST from PDB (e.g. via DIA)

I'm currently using the DIA SDK to get some very useful information from a PDB file... Now, the basic question is: how deep can I go with that? The optimum would be to able to get everything right ...
1
vote
2answers
292 views

XCopy WPF deployment

If I wanted to just xcopy my WPF app, what are the minimum necessary files from the Release folder to copy? In my Release folder, I have various dlls that my project references, a vshost.exe, a ...
3
votes
1answer
381 views

Is it possible to (re)create a PDB file after a DLL is made

I have the DLL and I have the exact sources used to create the DLL. I want our local symbol server to work when we get a dump file from customers. (Updating the DLL at the customer site can't be done ...
1
vote
0answers
133 views

Is there a size limit for PDB files in Microsoft Visual Studio C++ 2008?

Is there a size limit for PDB files in Microsoft Visual Studio C++ 2008? Could exceeding this limit cause the debugger to hang?
1
vote
3answers
741 views

LNK4099 in GLFW console project with debug configuration

When compiling a win32 console project with GLFW in Visual Studio 2010 SP1, I am getting the following warning for debug configuration: Warnung 1 warning LNK4099: PDB "vc100.pdb" wurde nicht mit ...
10
votes
6answers
465 views

Debugging release build on a client's machine

We have a native C++ Win32 .exe built using Visual Studio 2005 that works flawlessly on all the machines we've tested in-house on (XP 32-bit, Vista 32-bit & Windows 7 64-bit). But of course, it ...
6
votes
1answer
545 views

embedding source into pdb, and having debugger(s) use it?

NOTE: my target concern is C# targeting the CLR with regular MSIL in case there's something that works for that but not in the more general case(s). Some existing source debugging support examples ...
3
votes
2answers
368 views

Does shipping PDB file make obfuscation useless in .net?

If I obfuscate a vb.net assembly using Eazfuscator with symbol names encryption turned on (so that I can use the Eazfuscator stack trace decoder), is this effectively undone if I ship the PDB file? I ...
3
votes
1answer
4k views

Windows Debugging Symbols - Not Loading

I am having Windows 7 x64 SP1. I have downloaded symbols from: http://msdn.microsoft.com/en-us/windows/hardware/gg463028 I have downloaded and installed x64 RTM and x64 SP1 symbols for Windows 7 x64 ...
1
vote
1answer
146 views

pdbstr does not work from outside of the installation folder

I try to setup source server without SVC- I want to use a simple UNC path as a source storage. I made small console project with a single file and try to make it source indexed. I have following ...
0
votes
1answer
279 views

Getting used incremental linking thunks from the .pdb for a function?

I'm trying to determine a static callgraph of an .exe using the .pdb and the DIA SDK. Unfortunately, when linking incrementally, the incremental trampoline thunks called by a function don't show up ...
1
vote
4answers
4k views

Visual Studio 2010 debugger build correctly - compiler pdb and linker pdb not in synch?

I have a solution in MS VS 2010 that compiles and builds properly after a rebuild all (1). However, after I make a change to a source file and begin debugging, VS recognizes the project is out of ...
1
vote
2answers
378 views

Reading the PDB header in c++

I'm trying to read the header of a PDB file in order to know if it matches my EXE file. Is there a nice way to read the signature of the PDB file (maybe using dbgHelp)? I need to obtain the fields of ...
0
votes
1answer
579 views

Visual Studio 2010 SP1 - C# PDB file corrupt - shows wrong line numbers

I have a problem with a single C# project in a solution of 21 C# projects (ANY CPU). Break points aren't hit - and when I force the debugger to attach (Debugger.Launch()), I can see that the call ...
1
vote
0answers
90 views

Any way to get the file path to the source file of an embedded resource at runtime?

I am working on a VirtualPathProvider which will let me load embedded resources (ER) (such as .js or .css files) from a referenced assembly. I would like to be able to change the .js files and .css ...
5
votes
3answers
3k views

How to decompile pdb to get C# source code?

My scenario: I want to write in log file part of code where exception has happened (for example 5 lines before and 5 lines after line where exception happened - or at least all the code of that ...
0
votes
3answers
226 views

What is the structure of a PDB file?

I am trying to understand how a debugger uses PDB file. It would probably be a small file system in itself. Could someone help me understand the structure of the PDB file?
9
votes
3answers
720 views

Debugging cross-compiled code: Linux->Windows

I'm cross-compiling a project from Linux to target Windows (using mingw). The output is a DLL and p-invoking into it from C# works, but debugging is very difficult. The build outputs a .o file, which ...
2
votes
0answers
127 views

Working with the PDB file [duplicate]

Possible Duplicate: How do I use PDB files I was just about to release a new version of an application when I realised there was a pdb file. I found some good information about what it ...
0
votes
1answer
217 views

Dbghelp.dll and local symbols

I'm developing a user-mode (Ring3) code-level debugger. It should be able to read and use the debugging information from the .pdb files. Processing of static variables is easy. But when dbghelp.dll ...
0
votes
1answer
486 views

How do I get the svnindex.cmd script included with SrcSrv to index source files with URI-escaped spaces in them?

I recently set up a symbol server and added SrcSrv support to our build scripts so that we can easily debug crash dumps from the field and have WinDbg and/or the Visual Studio debugger get the correct ...
0
votes
3answers
339 views

“No symbols loaded for the current document” ASP.NET C# Project

What to do now, this time?? I hate VS and this symbolic gibberish that never seem to have same solution (if it once was logic) twice. The screendump below says what it says. As soon as I F5/Start ...
41
votes
4answers
11k 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?

1 2 3