New comment by sgn on void-packages repository https://github.com/void-linux/void-packages/issues/25125#issuecomment-706798828 Comment: @duncancmt ~This simple C++ program crashed on `aarch64-musl`, MCVE identified. `gdb` itself uses exception, so gdb couldn't help. Please don't report more issues with this kind of problem until we fixed it. Instead, you can make a big issue about aarch64-musl and merge everything there. Thanks ```cpp #include #include int main(int argc, char **argv) { try { throw std::runtime_error("hello"); } catch (const std::exception& e) { } return 0; } ```