[libc][NFC] Remove "$>" from another command block on examples/README.md.

This commit is contained in:
Siva Chandra Reddy 2022-11-04 08:37:05 +00:00
parent 3d2165f738
commit 086757a47a

View File

@ -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