Re: [Valgrind-users] How to do handle SIGILL nostop in valgrind?

2022-06-26 Thread ellie
Oh I'm so silly, it appears I simply canceled the program seeing the SIGILL warning assuming it was just about to crash when I just would have needed to let it run. Thanks so much for explaining :-) For what it's worth, this is on an ARM64 Allwinner/PinePhone 1.2 CE 3GB RAM edition, so an

Re: [Valgrind-users] How to do handle SIGILL nostop in valgrind?

2022-06-26 Thread Mark Wielaard
Hi Ellie, On Sun, Jun 26, 2022 at 10:13:37AM +0200, ellie wrote: > How do I run openssl programs in valgrind on processors where it causes > SIGILL? https://www.openssl.org/docs/faq.html#PROG17 > > They recommend to use handle SIGILL nostop, but the only mention in the > valgrind documentation

Re: [Valgrind-users] How to do handle SIGILL nostop in valgrind?

2022-06-26 Thread Tom Hughes via Valgrind-users
On 26/06/2022 09:13, ellie wrote: How do I run openssl programs in valgrind on processors where it causes SIGILL? https://www.openssl.org/docs/faq.html#PROG17 In what way is it not working? When valgrind encounters an instruction it doesn't understand it logs the details and then passes the

[Valgrind-users] How to do handle SIGILL nostop in valgrind?

2022-06-26 Thread ellie
Hi everyone, How do I run openssl programs in valgrind on processors where it causes SIGILL? https://www.openssl.org/docs/faq.html#PROG17 They recommend to use handle SIGILL nostop, but the only mention in the valgrind documentation of that seems to be how to do this in gdb, not how to do