[llvm] r292290 - Fix GettingStarted doc so that the example build command for cmake LLVM_ENABLE_PROJECTS works on linux
Mehdi Amini via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 17 15:23:09 PST 2017
Author: mehdi_amini
Date: Tue Jan 17 17:23:08 2017
New Revision: 292290
URL: http://llvm.org/viewvc/llvm-project?rev=292290&view=rev
Log:
Fix GettingStarted doc so that the example build command for cmake LLVM_ENABLE_PROJECTS works on linux
I tested the previous one on macOS, however building libc++ on Linux
requires libcxxabi as well.
Modified:
llvm/trunk/docs/GettingStarted.rst
Modified: llvm/trunk/docs/GettingStarted.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/GettingStarted.rst?rev=292290&r1=292289&r2=292290&view=diff
==============================================================================
--- llvm/trunk/docs/GettingStarted.rst (original)
+++ llvm/trunk/docs/GettingStarted.rst Tue Jan 17 17:23:08 2017
@@ -725,7 +725,7 @@ Or a combination of multiple projects:
% cd $TOP_LEVEL_DIR
% mkdir clang-build && cd clang-build
- % cmake -GNinja ../llvm-project/llvm -DLLVM_ENABLE_PROJECTS="clang;libcxx;compiler-rt"
+ % cmake -GNinja ../llvm-project/llvm -DLLVM_ENABLE_PROJECTS="clang;libcxx;libcxxabi"
A helper script is provided in `llvm/utils/git-svn/git-llvm`. After you add it
to your path, you can push committed changes upstream with `git llvm push`.
More information about the llvm-commits
mailing list