Update BUILDING_FROM_SOURCE and quicksort readme

This commit is contained in:
Richard Feldman 2020-10-04 14:07:50 -04:00
parent ad16aa61e9
commit e60796e32b
2 changed files with 3 additions and 3 deletions

View File

@ -6,10 +6,10 @@
To build the compiler, you need these installed:
* `libunwind` (macOS should already have this one installed)
* `libc++abi`
* `libc++-dev`
* a particular version of LLVM
Some systems may already have `libc++abi` on them, but if not, you may need to install it. (On Ubuntu, this can be done with `sudo apt-get install libc++abi-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
(e.g. with `sudo apt-get install libunwind-dev`).