In the release notes for GCC12, under the section "Runtime Library (libstdc++)", it says:
Improved experimental C++23 support, including: [...] <stacktrace> (not built by default, requires linking to an extra library).
What library do I need to link against to use <stacktrace>
? I'm on an x86 Linux
system, if that matters.
-lbacktrace
maybe? – Transact