Do the rational tools follow the _NT_SYMBOL_PATH to find .pdb files? It seems from my experience that they are not and that the .pdb files need to be collocated with the .dll's and .exe's I am trying to intrument.
Rational tools Purify/Quantify finding pdb files
239 Views Asked by David St Denis At
1
There are 1 best solutions below
Related Questions in PDB-FILES
- Visual Studio Profiler - how to see function body
- How to convert pdb file to xml using mdbg?
- Specifying path to pdb symbol file in cmake
- Loading pdb for msctf.dll from symbol server doesn't work
- pdb file is mising after PostSharp
- Source code lines number in stack trace for asp.net application in WinDbg
- VS15 Azure webapp remote debug can't find <project>.dll symbol file
- How to update the source location in symbol (.pdb) files
- Why can't VS get the published PDBs for my NuGet packages?
- PDBs and .NET Framework Debugging Control ini files when DLLs are in the GAC (in Production)
- Why is Visual Studio 2013 loading a mismatching PDB from a different folder?
- Can't find or open PDB - VS 2013 (C++)
- Pdb files, what does their lines mean?
- How to 'rename' a template instantiation without using inheritance?
- How to debug solution of a dependent dll with two instance of visual studio?
Related Questions in PURIFY
- Is there a known issue with throwing exceptions in g++ with Purify causing SIGABRT?
- Incorrect memory leak in purify?
- Can visual c++ 2013 do what Purify and Quntify do?
- Non-static method Stevebauman Purify clean()
- How to integrate Purify into Hudson CI?
- How to avoid the following purify detected memory leak in C++?
- How to interface Purify into Scons?
- purify on Suse Linux
- Is my anti XSS method OK for allowing user HTML in PHP?
- Purify's Uninit Memory Read (UMR) on class/structure padding
- Rational PurifyPlus: where to buy? Any experience with alternatives?
- Is there an automated way to convert files from .pv to .log?
- C : Parsing options the right way
- HTML Purifier: How to prevent from removing href attribute of anchor tags
- Is there a dynamic checking utility that can flag overflow of static buffer in struct?
Related Questions in QUANTIFY
- Quantifying a 3D scatter plot
- Quantify streamed video
- Can visual c++ 2013 do what Purify and Quntify do?
- How to quantify the relevant value change
- quantify a captured regex
- How to quantify the quality of a pseudorandom number generator?
- where to pass quantifying data values for formula fields?
- cscart product minimum quantity issue
- What is INST_GEN in z3
- Calculating a total from quantity of a product
- Machine Learning: quantifying uncertainty around missing data
- Is it possible to quantify scalability as a requirement?
- Rational tools Purify/Quantify finding pdb files
- Does Valgrind have an API like Purify/Quantify that lets you disable data recording?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I eventually found some references that indicate that the pdb and dll/exe need to be collocated.
Verify that the .pdb file for the .exe or .dll is in the same directory as the corresponding .exe or .dll. The .pdb file contains the Microsoft format symbol information. If you move your .exe or .dll to a working directory, you must also move the corresponding .pdb file.
Verify that the pdb files are present in the same folder as the application modules so that the modules can be instrumented in precise mode. Precise mode instrumentation is a level of error-checking instrumentation that provides full runtime error detection and precisely pinpoints problems in any component in your program. If the application does not have the correct debug info, PurifyPlus will instrument in minimal mode and data will not be collected for that particular module.