[PATCH] D153727: [docs] GettingStarted.rst cmake should reference build
Fangrui Song via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sat Jul 15 11:36:31 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG6fa8d110342d: [docs] GettingStarted.rst cmake should reference build (authored by fzakaria, committed by MaskRay).
Changed prior to commit:
https://reviews.llvm.org/D153727?vs=540618&id=540715#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153727/new/
https://reviews.llvm.org/D153727
Files:
llvm/docs/GettingStarted.rst
Index: llvm/docs/GettingStarted.rst
===================================================================
--- llvm/docs/GettingStarted.rst
+++ llvm/docs/GettingStarted.rst
@@ -89,11 +89,11 @@
you run into memory issues building LLVM, try setting this to limit the
maximum number of compile/link jobs running at the same time.
- * ``cmake --build . [--target <target>]`` or the build system specified
+ * ``cmake --build build [--target <target>]`` or the build system specified
above directly.
- * The default target (i.e. ``cmake --build .`` or ``make``) will build all of
- LLVM.
+ * The default target (i.e. ``cmake --build build`` or ``make -C build``)
+ will build all of LLVM.
* The ``check-all`` target (i.e. ``ninja check-all``) will run the
regression tests to ensure everything is in working order.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D153727.540715.patch
Type: text/x-patch
Size: 873 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230715/b22367dd/attachment.bin>
More information about the llvm-commits
mailing list