https://bugs.kde.org/show_bug.cgi?id=476465
--- Comment #13 from Rob Bresalier <rob.bresal...@nokia.com> --- To add to my previous comment, the unhandled instruction occurs at: line 857 of boost-1.82.0/boost-1.82.0/libs/atomic/include/boost/atomic/detail/core_arch_ops_gcc_aarch64.hpp which you can see below is ldapr: 854 #if defined(BOOST_ATOMIC_DETAIL_AARCH64_HAS_RCPC) 855 if (order == memory_order_consume || order == memory_order_acquire) 856 { 857 __asm__ __volatile__ 858 ( 859 "ldapr %w[value], %[storage]\n\t" 860 : [value] "=r" (v) 861 : [storage] "Q" (storage) 862 : "memory" 863 ); 864 } 865 else 866 #endif 867 { 868 __asm__ __volatile__ 869 ( 870 "ldar %w[value], %[storage]\n\t" 871 : [value] "=r" (v) 872 : [storage] "Q" (storage) 873 : "memory" 874 ); 875 } -- You are receiving this mail because: You are watching all bug changes.