Questions tagged [crashrpt]

CrashRpt is an open-source library designed for intercepting exceptions from a C++ program, collecting technical information about the crash and reporting the error reports over the Internet.

7 questions
12
votes
7 answers

Any recommended VC++ settings for better PDB analysis on release builds

Are there any VC++ settings I should know about to generate better PDB files that contain more information? I have a crash dump analysis system in place based on the project crashrpt. Also, my production build server has the source code installed…
Brian R. Bondy
  • 339,232
  • 124
  • 596
  • 636
4
votes
7 answers

Crash reporting in C for Linux

Following this question: Good crash reporting library in c# Is there any library like CrashRpt.dll that does the same on Linux? That is, generate a failure report including a core dump and any necessary environment and notify the developer about…
Nathan Fellman
  • 122,701
  • 101
  • 260
  • 319
3
votes
0 answers

MFC app will CrashRpt slow down the app performance?

I'm thinking of using CrashRpt open-source library but I'm worried about performance. The app performance requirement is critical so it's very importing not to slow it down. The author affirms that there's no performance degradation but I would like…
manujcm
  • 163
  • 11
2
votes
1 answer

How can multiple programmers use crashrpt stack traces?

When we encounter bugs in our program, we need to be able to debug. The program produces crash dumps via crashrpt. These dumps are for the release-with-debug-info versions of our program and all associated libraries. Everything should be built…
mmr
  • 14,781
  • 29
  • 95
  • 145
1
vote
2 answers

How do you configure the email settings in CrashRpt to send the crash dump?

After reading this discussion and this discussion about using CrashRpt to generate a crash dump and email it to the developers, I've been having a difficult time finding any instructions/tutorials for configuring the email settings used by the…
BeachRunnerFred
  • 18,070
  • 35
  • 139
  • 238
0
votes
0 answers

CrashRpt not working in release mode

I have created a super simple C++ console application that does a division by zero. I also added CrashRpt to the project and set everything up according to these instructions: http://crashrpt.sourceforge.net/docs/html/configuring_project.html (e.g.…
Boris
  • 8,551
  • 25
  • 67
  • 120
0
votes
1 answer

Failed to send report using Crashrpt

I have intergrated Crashrpt in my VC++ MFC application to handle exceptions. It's working fine and shows dialog to send error, but when I press send error button to send mail, it fails. I am using following gmail SMTP settings for testing: SMTP Host…
Upendra Chaudhari
  • 6,473
  • 5
  • 25
  • 42