In CMake, how do I assure linking against sometimes-separate parts of the C++ standard libray (fs, stacktrace)?
In principle, a provider of an implementation of the C++ standard library does not have to bundle everything in a single library/archive file; and, indeed, G++ is (in)famous for doing that, having for a long time required the specification of -lstdc++fs
.