0

I would like to use all the features of C++ 17, but more specifically, I need std::(experimental)::filesystem::recursive_directory_iterator available in C++17, how do I get to use it?

I am using Eclipse CDT on Mac OSX (I am also comfortable with xCode, if necessary), and I want to use C++17.

Thanks

sources: http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/recursive_directory_iterator

Investor
  • 185
  • 7

1 Answers1

0

You can use gcc and you can install with this line.

brew install gcc --HEAD

This gcc has limited support for C++17 also it can be enabled by -std=c++17.

akyurekt
  • 51
  • 1
  • 4