New issue by duncancmt on void-packages repository https://github.com/void-linux/void-packages/issues/25535 Description: `gdb` itself uses exception, so gdb couldn't help. Please don't report more issues with this kind of problem until we fixed it. ```cpp #include #include int main(int argc, char **argv) { try { throw std::runtime_error("hello"); } catch (const std::exception& e) { } return 0; } ``` _Originally posted by @sgn in https://github.com/void-linux/void-packages/issues/25125#issuecomment-706798828_