amigo421
amigo421

Reputation: 2541

Mingw build with latest standard support

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

Answers (1)

Denis Sablukov
Denis Sablukov

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

Related Questions