I would like to parallelize some std::for_each loops using the new execution policies. No problem with gcc 9.3 on ubuntu 20.04, but clang 11 on macos 11 is complaining that #include <execution> not found. Have they not included execution yet?
My flags are -std=c++17 -lstdc++ -ltbb
Tried with both -lstdc++ and -libc++ and read a similar post.