You can find out which piece of software caused the segmentation error - and this is probably not a surprise to you - debugging ! As you can see...
Aborted (core dumped)
... there is a core dump.
Just run gdb on your executable file and a kernel dump and find out what parameters strcpy for this (see the first line of your return line). Then go back through the stack trace and code. It looks like the debugging symbols were compiled, so you are in luck and you can see which function is actually being called and what parameters are provided - at least if the error did not damage the stack.
However, if you are not too familiar with debugging C or assembler code, you probably want perftools developers to debug this issue .
iblue
source share