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 - Installation
- Linux - Linux
- [Debian/Ubuntu 15](#debianubuntu-15) - [Debian testing/Linux Mint/Ubuntu](#debian-testinglinux-mintubuntu)
- [Ubuntu 14/Linux Mint 17](#ubuntu-14linux-mint-17) - [Debian stable](#debian-stable)
- [Arch Linux](#arch-linux) - [Arch Linux](#arch-linux)
- OS X - OS X
- [Homebrew](#os-x-with-homebrew-httpbrewsh) - [Homebrew](#os-x-with-homebrew-httpbrewsh)
@ -11,14 +11,12 @@
- [MSYS 2](#windows-with-msys2-httpsmsys2githubio) - [MSYS 2](#windows-with-msys2-httpsmsys2githubio)
- [Run](#run) - [Run](#run)
## Debian/Ubuntu 15 ## Debian testing/Linux Mint/Ubuntu
**Currently, if using another libclang version, the same version of lldb is needed.** **Currently, if using another libclang version, the same version of lldb is needed.**
Install dependencies: Install dependencies:
```sh ```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++ 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++ 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
``` ```
Get juCi++ source, compile and install: Get juCi++ source, compile and install:
@ -31,12 +29,12 @@ make
sudo make install sudo make install
``` ```
## Ubuntu 14/Linux Mint 17 ## Debian stable
**Currently, if using another libclang version, the same version of lldb is needed.** **Currently, if using another libclang version, the same version of lldb is needed.**
Install dependencies: Install dependencies:
```sh ```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: Get juCi++ source, compile and install:
@ -59,8 +57,7 @@ Alternatively, follow the instructions below.
Install dependencies: Install dependencies:
```sh ```sh
#as root sudo pacman -S git cmake make clang gtksourceviewmm boost aspell aspell-en
pacman -S git cmake make clang gtksourceviewmm boost aspell aspell-en
``` ```
Get juCi++ source, compile and install: Get juCi++ source, compile and install:
@ -70,8 +67,7 @@ mkdir jucipp/build
cd jucipp/build cd jucipp/build
cmake .. cmake ..
make make
# as root sudo make install
make install
``` ```
## OS X with Homebrew (http://brew.sh/) ## OS X with Homebrew (http://brew.sh/)
@ -111,34 +107,7 @@ make
make install 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 ## Run
```sh ```sh
juci juci
``` ```
<!--
#### Windows
```sh
startxwin /usr/local/bin/juci
```
-->

Loading…
Cancel
Save