Add libclang and its various incarnations to the install documentation (#79)

stable
Violet White 4 years ago committed by Ana Gelez
parent 8b3c334923
commit c1bb0b0de3

@ -16,15 +16,15 @@ want to use.
If you want **PostgreSQL**, use:
```
apt install postgresql postgresql-contrib libpq-dev gettext git curl gcc make openssl libssl-dev pkg-config
apt install postgresql postgresql-contrib libpq-dev gettext git curl gcc make openssl libssl-dev pkg-config libclang-dev
```
If you prefer to use **SQlite**:
```
apt install libsqlite3-dev gettext git curl gcc make openssl libssl-dev pkg-config
apt install libsqlite3-dev gettext git curl gcc make openssl libssl-dev pkg-config libclang-dev
```
Now that these dependencies have been installed, we need to install Rust which has a special installer.
<a class="action" href="/installation/deps/rust">Let's do it!</a>
<a class="action" href="/installation/deps/rust">Let's do it!</a>

@ -6,12 +6,12 @@ title: Dependencies on Gentoo
emerge --sync
# If you want PostgreSQL
emerge -avu dev-db/postgresql dev-vcs/git sys-devel/gettext
emerge -avu dev-db/postgresql dev-vcs/git sys-devel/gettext sys-devel/clang
# If you want SQlite
emerge -avu dev-db/sqlite dev-vcs/git sys-devel/gettext
emerge -avu dev-db/sqlite dev-vcs/git sys-devel/gettext sys-devel/clang
```
Now that these dependencies have been installed, we need to install Rust which has a special installer.
<a class="action" href="/installation/deps/rust">Let's do it!</a>
<a class="action" href="/installation/deps/rust">Let's do it!</a>

@ -7,7 +7,7 @@ With [Homebrew](https://brew.sh/):
```bash
brew update
brew install git
brew install git llvm
brew link gettext --force
# Additionally, only for PostgreSQL

@ -4,12 +4,12 @@ title: Installing dependencies on RPM-based systems
```bash
# If you want PostgreSQL
dnf install postgresql-server postgresql-contrib libpqxx libpqxx-devel git curl gcc make openssl openssl-devel gettext
dnf install postgresql-server postgresql-contrib libpqxx libpqxx-devel git curl gcc make openssl openssl-devel gettext clang-devel
# If you want SQLite
dnf install libsq3-devel sqlite3 libsqlite3-dev git curl gcc make openssl openssl-devel gettext
dnf install libsq3-devel sqlite3 libsqlite3-dev git curl gcc make openssl openssl-devel gettext clang-devel
```
Now that these dependencies have been installed, we need to install Rust which has a special installer.
<a class="action" href="/installation/deps/rust">Let's do it!</a>
<a class="action" href="/installation/deps/rust">Let's do it!</a>

Loading…
Cancel
Save