https://bugs.kde.org/show_bug.cgi?id=421321
--- Comment #4 from Mark Wielaard <m...@klomp.org> --- (In reply to ahashmi from comment #3) > Created attachment 128471 [details] > Fix patch for std_mutex spin bug Nice! That fixes the hang for me. Note that I already pushed the libgcc supplemental patch to git master. What is still missing is: diff --git a/coregrind/m_initimg/initimg-linux.c b/coregrind/m_initimg/initimg-l inux.c index 0b44f825d..bab8aeca0 100644 --- a/coregrind/m_initimg/initimg-linux.c +++ b/coregrind/m_initimg/initimg-linux.c @@ -705,7 +705,8 @@ Addr setup_client_stack( void* init_sp, { /* Limit the AT_HWCAP to just those features we explicitly support in VEX. */ -#define ARM64_SUPPORTED_HWCAP (VKI_HWCAP_AES \ +#define ARM64_SUPPORTED_HWCAP (VKI_HWCAP_ATOMICS \ + | VKI_HWCAP_AES \ | VKI_HWCAP_PMULL \ | VKI_HWCAP_SHA1 \ | VKI_HWCAP_SHA2 \ Plus your patch. -- You are receiving this mail because: You are watching all bug changes.