[libc-commits] [libc] 086757a - [libc][NFC] Remove "$>" from another command block on examples/README.md.
Siva Chandra Reddy via libc-commits
libc-commits at lists.llvm.org
Fri Nov 4 01:37:53 PDT 2022
Author: Siva Chandra Reddy
Date: 2022-11-04T08:37:05Z
New Revision: 086757a47a51c626d85fab4ef2a1eb909a4db108
URL: https://github.com/llvm/llvm-project/commit/086757a47a51c626d85fab4ef2a1eb909a4db108
DIFF: https://github.com/llvm/llvm-project/commit/086757a47a51c626d85fab4ef2a1eb909a4db108.diff
LOG: [libc][NFC] Remove "$>" from another command block on examples/README.md.
Added:
Modified:
libc/examples/README.md
Removed:
################################################################################
diff --git a/libc/examples/README.md b/libc/examples/README.md
index ea82c5caf923..36b886090c6c 100644
--- a/libc/examples/README.md
+++ b/libc/examples/README.md
@@ -13,9 +13,9 @@ build set up. To build an example, create a directory named `build` in the
example's directory:
```bash
-$> cd <example directory>
-$> mkdir build
-$> cd build
+cd <example directory>
+mkdir build
+cd build
```
Each example can be built to use the libc in either
@@ -59,7 +59,7 @@ have installed them, you have to inform CMake that we are linking against the
full libc as follows:
```bash
-cmake ../ -G <GEN> -DLIBC_FULLBUILD=ON \
+cmake ../ -G <GEN> -DLIBC_FULLBUILD=ON \
-DCMAKE_SYSROOT=<SYSROOT> \
-DCMAKE_C_COMPILER=<SYSROOT>/bin/clang \
-DCMAKE_TRY_COMPILE_TARGET_TYPE=STATIC_LIBRARY
More information about the libc-commits
mailing list