[libc-commits] [PATCH] D143254: [libc] Fix quotation marks in overlay mode instructions
David Spickett via Phabricator via libc-commits
libc-commits at lists.llvm.org
Fri Feb 3 06:44:52 PST 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG008acfb51951: [libc] Fix quotation marks in overlay mode instructions (authored by DavidSpickett).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D143254/new/
https://reviews.llvm.org/D143254
Files:
libc/docs/overlay_mode.rst
Index: libc/docs/overlay_mode.rst
===================================================================
--- libc/docs/overlay_mode.rst
+++ libc/docs/overlay_mode.rst
@@ -39,7 +39,7 @@
$> cd llvm-project # The llvm-project checkout
$> mkdir build
$> cd build
- $> cmake ../llvm -G Ninja -DLLVM_ENABLE_PROJECTS=”libc” \
+ $> cmake ../llvm -G Ninja -DLLVM_ENABLE_PROJECTS="libc" \
-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_BUILD_TYPE=<Debug|Release> \ # Select build type
-DCMAKE_INSTALL_PREFIX=<Your prefix of choice> # Optional
@@ -71,8 +71,8 @@
.. code-block:: sh
- $> cmake ../llvm -G Ninja -DLLVM_ENABLE_PROJECTS=”clang” \
- -DLLVM_ENABLE_RUNTIMES=”libc” \ # libc is listed as runtime and not as a project
+ $> cmake ../llvm -G Ninja -DLLVM_ENABLE_PROJECTS="clang" \
+ -DLLVM_ENABLE_RUNTIMES="libc" \ # libc is listed as runtime and not as a project
-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_BUILD_TYPE=<Debug|Release> \ # Select build type
-DCMAKE_INSTALL_PREFIX=<Your prefix of choice> # Optional
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D143254.494616.patch
Type: text/x-patch
Size: 1184 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20230203/2dfdc767/attachment.bin>
More information about the libc-commits
mailing list