I've had the the NaCl platform qualification hanging (perhaps as in #740) on some armhf systems:
- A QEMU emulated virtual machine (not sure which CPU variant)
- Raspberry Pi 2. This has a "Broadcom BCM2836" CPU based on ARM Cortex A7.
When I debugged the QEMU case, I found it to be caused by a breakpoint instruction: __asm__ __volatile__ ("BKPT");. At the time, I wasn't able to find any information about this instruction causing the program to hang (i.e. halt execution, but not terminate) and though it must be an emulator quirk.
I've had the the NaCl platform qualification hanging
(perhaps as in #740)on some armhf systems:When I debugged the QEMU case, I found it to be caused by a breakpoint instruction:
__asm__ __volatile__ ("BKPT");. At the time, I wasn't able to find any information about this instruction causing the program to hang (i.e. halt execution, but not terminate) and though it must be an emulator quirk.