Skip to content

Commit 423df47

Browse files
authored
Update README.md ninja instructions (#202)
ninja couldn't find the target when I run `ninja bin/llvm-cbe` Ninja found the target with `ninja llvm-cbe`
1 parent 3644957 commit 423df47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ If you built LLVM yourself, put it in the same folder you built LLVM in:
6161
projects$ git clone https://github.com/JuliaHubOSS/llvm-cbe
6262
projects$ cd ../build
6363
build$ cmake -S .. -G "Ninja"
64-
build$ ninja bin/llvm-cbe
64+
build$ ninja llvm-cbe
6565
```
6666
If you used your distribution's package, put it wherever you feel like:
6767
```sh
6868
~$ git clone https://github.com/JuliaHubOSS/llvm-cbe
6969
~$ cd llvm-cbe && mkdir build && cd build
7070
build$ cmake -S .. -G "Ninja"
71-
build$ ninja bin/llvm-cbe
71+
build$ ninja llvm-cbe
7272
```
7373
Step 3: Usage Examples
7474
======================

0 commit comments

Comments
 (0)