View Single Post
Halftux's Avatar
Posts: 862 | Thanked: 2,511 times | Joined on Feb 2012 @ Germany
#123
@justmemory

I think gdb raises this sigabort with help of libc. So it was initiate by yourself.

To get more information you need to recompile fcamera without code optimization, so without -O2 and activate debug information -g or -g3. Furthermore you should avoid to strip your binary.

If you are in doubt please post your makefile. The binary get stripped by dpkg, when compiling a deb file (rules: dh_strip). So don't make a deb only compile fcamera with right gcc flags and copy the binary.

For gcc flags it could be enough to change in the project file:

Code:
line 44: CONFIG += release warn_on
to

Code:
CONFIG += debug warn_on
After the change you need to generate the makefile again and compiling. Try to run it again with gdb and see if you get more informations.
 

The Following 2 Users Say Thank You to Halftux For This Useful Post: