Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
ninja couldn't find the target when I run `ninja bin/llvm-cbe`
Ninja found the target with `ninja llvm-cbe`
  • Loading branch information
mio-19 authored Aug 17, 2024
1 parent 3644957 commit e619849
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ If you built LLVM yourself, put it in the same folder you built LLVM in:
projects$ git clone https://github.com/JuliaHubOSS/llvm-cbe
projects$ cd ../build
build$ cmake -S .. -G "Ninja"
build$ ninja bin/llvm-cbe
build$ ninja llvm-cbe
```
If you used your distribution's package, put it wherever you feel like:
```sh
~$ git clone https://github.com/JuliaHubOSS/llvm-cbe
~$ cd llvm-cbe && mkdir build && cd build
build$ cmake -S .. -G "Ninja"
build$ ninja bin/llvm-cbe
build$ ninja llvm-cbe
```
Step 3: Usage Examples
======================
Expand Down

0 comments on commit e619849

Please sign in to comment.