There have been several questions about getting experimental/filesystem
to compile in the latest versions of GCC and Clang: experimental::filesystem linker error
But now filesystem
has been accepted into c++17 so no more need for experimental
or the -lstdc++fs
flag, right?
Wrong I cannot even #include <filesystem>
on the head version of either clang++
or g++
when I try on: http://melpon.org/wandbox
Is there still some other argument I need? -lstdc++fs
just gives me the experimental
version, how can I include the officially accepted version?