How to get detailed errors: "F libc : Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR)"?
-
Hi,
Do you base your code on an official example ?
If so can you share it ? -
@senmx said in How to get detailed errors: "F libc : Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR)"?:
@SGaist The magic is that it is normal to using a demo to test this function separately.
What do you mean by that ?
-
@senmx
Well a memory leak would not cause a crash, rather only some wasted memory. So that should not be the cause of the issue you report.Despite being asked, you still have not said a word about what this library is and more importantly where you get the sample for the code you have written.....
-
@senmx said in How to get detailed errors: "F libc : Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR)"?:
@JonB Tks. It's just a guessing, it's probably a pointer memory problem.How to get a more detailed error stack?
Install the debug symbols of that library and use a debugger.
-
@senmx said in How to get detailed errors: "F libc : Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR)"?:
There is no library.
Oh! So all the code you originally showed, and the
EVP_PKEY_assign_RSA(evpkey, r);
you still have, is not in a library? It's your own code, with your own source code. And there was I, thinking it was all code from OpenSSL, when in fact it is not, and you just happen to have chosen to name all your own classes/functions to match those supplied from OpenSSL....So you don't need to install any debug symbols like @SGaist said, you can just look at your own source code. Will be much easier.