mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 07:14:46 +00:00
Add valgrind to BUILDING_FROM_SOURCE.md
This commit is contained in:
parent
66fd2db2cd
commit
26978b58b4
1 changed files with 6 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Building the Roc compiler from source
|
# Building the Roc compiler from source
|
||||||
|
|
||||||
|
|
||||||
## Installing LLVM, libunwind, and libc++-dev
|
## Installing LLVM, valgrind, libunwind, and libc++-dev
|
||||||
|
|
||||||
To build the compiler, you need these installed:
|
To build the compiler, you need these installed:
|
||||||
|
|
||||||
|
@ -9,6 +9,10 @@ To build the compiler, you need these installed:
|
||||||
* `libc++-dev`
|
* `libc++-dev`
|
||||||
* a particular version of LLVM
|
* a particular version of LLVM
|
||||||
|
|
||||||
|
To run the test suite (via `cargo test`), you additionally need to install:
|
||||||
|
|
||||||
|
* [`valgrind`](https://www.valgrind.org/)
|
||||||
|
|
||||||
Some systems may already have `libc++-dev` on them, but if not, you may need to install it. (On Ubuntu, this can be done with `sudo apt-get install libc++-dev`.) macOS systems
|
Some systems may already have `libc++-dev` on them, but if not, you may need to install it. (On Ubuntu, this can be done with `sudo apt-get install libc++-dev`.) macOS systems
|
||||||
should already have `libunwind`, but other systems will need to install it
|
should already have `libunwind`, but other systems will need to install it
|
||||||
(e.g. with `sudo apt-get install libunwind-dev`).
|
(e.g. with `sudo apt-get install libunwind-dev`).
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue