Browse Source

Updated install docs

merge-requests/365/head
eidheim 10 years ago
parent
commit
591555e6ee
  1. 47
      docs/install.md

47
docs/install.md

@ -2,8 +2,8 @@
- Installation
- Linux
- [Debian/Ubuntu 15](#debianubuntu-15)
- [Ubuntu 14/Linux Mint 17](#ubuntu-14linux-mint-17)
- [Debian testing/Linux Mint/Ubuntu](#debian-testinglinux-mintubuntu)
- [Debian stable](#debian-stable)
- [Arch Linux](#arch-linux)
- OS X
- [Homebrew](#os-x-with-homebrew-httpbrewsh)
@ -11,14 +11,12 @@
- [MSYS 2](#windows-with-msys2-httpsmsys2githubio)
- [Run](#run)
## Debian/Ubuntu 15
## Debian testing/Linux Mint/Ubuntu
**Currently, if using another libclang version, the same version of lldb is needed.**
Install dependencies:
```sh
sudo apt-get install libclang-3.6-dev liblldb-3.6-dev || sudo apt-get install libclang-3.5-dev liblldb-3.5-dev
sudo apt-get install git cmake make g++ pkg-config libboost-system-dev libboost-thread-dev libboost-filesystem-dev libboost-log-dev libboost-regex-dev libgtksourceviewmm-3.0-dev aspell-en libaspell-dev
sudo apt-get install clang-format-3.6 || sudo apt-get install clang-format-3.5
sudo apt-get install git cmake make g++ libclang-3.6-dev liblldb-3.6-dev clang-format-3.6 pkg-config libboost-system-dev libboost-thread-dev libboost-filesystem-dev libboost-log-dev libboost-regex-dev libgtksourceviewmm-3.0-dev aspell-en libaspell-dev
```
Get juCi++ source, compile and install:
@ -31,12 +29,12 @@ make
sudo make install
```
## Ubuntu 14/Linux Mint 17
## Debian stable
**Currently, if using another libclang version, the same version of lldb is needed.**
Install dependencies:
```sh
sudo apt-get install git cmake make g++ libclang-3.6-dev liblldb-3.6-dev clang-format-3.6 pkg-config libboost-system-dev libboost-thread-dev libboost-filesystem-dev libboost-log-dev libboost-regex-dev libgtksourceviewmm-3.0-dev aspell-en libaspell-dev
sudo apt-get install git cmake make g++ libclang-3.5-dev liblldb-3.5-dev clang-format-3.5 pkg-config libboost-system-dev libboost-thread-dev libboost-filesystem-dev libboost-log-dev libboost-regex-dev libgtksourceviewmm-3.0-dev aspell-en libaspell-dev
```
Get juCi++ source, compile and install:
@ -59,8 +57,7 @@ Alternatively, follow the instructions below.
Install dependencies:
```sh
#as root
pacman -S git cmake make clang gtksourceviewmm boost aspell aspell-en
sudo pacman -S git cmake make clang gtksourceviewmm boost aspell aspell-en
```
Get juCi++ source, compile and install:
@ -70,8 +67,7 @@ mkdir jucipp/build
cd jucipp/build
cmake ..
make
# as root
make install
sudo make install
```
## OS X with Homebrew (http://brew.sh/)
@ -111,34 +107,7 @@ make
make install
```
<!--
## Windows with Cygwin (https://www.cygwin.com/)
**Make sure the PATH environment variable does not include paths to non-Cygwin cmake, make and g++.**
Select and install the following packages from the Cygwin-installer:
```
pkg-config libboost-devel libgtkmm3.0-devel libgtksourceviewmm3.0-devel xinit
```
Then run the following in the Cygwin Terminal:
```sh
git clone https://github.com/cppit/jucipp.git
cd jucipp
cmake .
make
make install
```
Note that we are currently working on a Windows-version without the need of an X-server.
-->
## Run
```sh
juci
```
<!--
#### Windows
```sh
startxwin /usr/local/bin/juci
```
-->

Loading…
Cancel
Save