Reputation: 2541
Is there mingw builds which supports filesystem namespace? I'm moving project from vc to mingw, and don't want to add boost filesystem, because currently it works without boost, under gcc/Linux and vc/win with experimental namespace.
Upvotes: 4
Views: 574
Reputation: 3690
MinGW GCC 8.2.0 can work with filesystem without experimental namespace.
Though it works with filesystem only via using -lstdc++fs
(and of course there should be -std=c++17
compilation flag or something similar).
Upvotes: 1