Skip to content

Commit

Permalink
Some simple build instructions (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgodbolt authored Apr 20, 2024
1 parent 1d4f49e commit 4bba213
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,19 @@ Other parameters:
Feeding an objdump via stdin into asm-parser:

`objdump --d a.out -l --insn-width=16 | asm-parser -stdin -binary`

### Building locally

You'll need:
- conan 1.59.0 - install this in your preferred way, e.g. `pip install conan==1.59.0` or equivalent
- `gcc` 12 or similar (or hack your settings to support your compiler)

Then you can
```
$ mkdir build
$ cd build
$ cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER=<path/to/compiler/if/needed>
$ make -j$(nproc)
$ make test
```

0 comments on commit 4bba213

Please sign in to comment.