Posts

Post not yet marked as solved
1 Replies
1.7k Views
Hi all,Using Xcode 11.2.1 and c++17The following code does not compile(error main.cpp:3:10: 'execution' file not found:)#include <iostream>#include <algorithm>#include <execution>int main(int argc, const char * argv[]) { std::cout << "Hello, World!\n"; auto myvar=std::execution::par; return 0; }
Posted Last updated
.
Post marked as solved
3 Replies
8.2k Views
When the linker misses a symbol I do not see the name of the symbol. It says to set the -v flag for clang to see the name.I use Xcode 10.1.Thanks in advance!--Perry
Posted Last updated
.