Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Update Arch Linux setup instructions #603

Merged
merged 1 commit into from
Feb 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,18 @@ supported platforms and their dependencies:

#### Arch Linux:
```
sudo pacman -S git linux-headers nasm clang clang-tools-extra cmake base-devel yaourt
sudo pacman -S git linux-headers nasm clang clang-tools-extra cmake base-devel
git clone https://aur.archlinux.org/package-query.git
git clone https://aur.archlinux.org/yaourt.git
pushd package-query
makepkg --install --sync-deps --needed
popd
pushd yaourt
makepkg --install --sync-deps --needed
popd
sudo yaourt -S downgrade
downgrade clang clang-tools-extra llvm-libs # select clang 4.0
sudo downgrade clang clang-tools-extra llvm-libs # select 4.0.*
sudo ln -s /usr/share/clang/run-clang-tidy.py /usr/bin/run-clang-tidy-4.0.py
```

#### Ubuntu 17.04 (or Higher):
Expand Down