I had been erroneously using this command, which failed at the link step:
$ clang -std=c++11 -stdlib=libc++ myInputFile.cpp
Can anyone e
Clang is the name of the whole compiler.
However, from a command-line point of view:
The -std=c++11 option enables the new C++11 standard (as in g++).