When libc++ is bootstrapped with clang using the cmake options
-DLLVM_ENABLE_PROJECTS="clang;llvm;lldb" and
-DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi" then the resulting clang uses
the just-built libcxx headers from <build-directory>/bin/../include/c++/v1
. So the clang in this case should also use the just-built libc++.dylib
from <build-directory>/bin/../lib instead of using the system's libc++
libraries.
rdar://107060541
I would reword this to: