I'm developing a C application running on a remote embedded board - Intel x86 platform - running LUbuntu 13.10.
This application is launched by a PHP script (but eventually I can run it from the command line for debugging purpose).
After a day the board shows a window that reports an internal error:
ExecutablePath: MyApp
ProblemType: Crash
Architecture: i386
CodeDump: (binary data)
..
SegvAnalysis: Skipped: missing required fields "Disassembly"
Signal: 11
..
This should be a Segmentation Error exception and of course I'd like to know where.
I'm not able to find the coredump file on the disk: do I need to enable the generation of it?
In the case, is it possible to understand which code raises the exception - possibly off-line?
regards