Typo on http://libcxx.llvm.org/index.html

Howdy,

Not sure if this the right place to bug about this, but I noticed that this:

CC=clang CXX=clang++ cmake -G "Unix Makefiles"
-DLIBCXX_CXX_ABI=libcxxrt
-DLIBCXX_LIBCXXABI_INCLUDE_PATHS="<libcxxrt-source-dir>/src"
-DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
<libc++-source-dir>

should probably be this:

CC=clang CXX=clang++ cmake -G "Unix Makefiles"
-DLIBCXX_CXX_ABI=libcxxrt
-DLIBCXX_LIBCXXRT_INCLUDE_PATHS="<libcxxrt-source-dir>/src"
-DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
<libc++-source-dir>

Cheers,
William Reading

Hi William,

Yes, this is the right place. You're quite right, thanks for the report.

I've sent a patch to cfe-commits for this change.

Michael