summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorDave Eddy <dave@daveeddy.com>2013-07-31 17:06:04 -0400
committerDave Eddy <dave@daveeddy.com>2013-07-31 17:15:32 -0400
commita784c852f44e57876a02fa1cffa961c55d94e5b3 (patch)
treed0683bf27cb727e96c2a1ab471ccea03a703fc90 /INSTALL.md
parentc558cb63f6db35bd51f2f2331e21df03105ee82a (diff)
touch up docs to link to eachother
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md23
1 files changed, 22 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 9efa7ee9..90563790 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -1,5 +1,17 @@
1#Install Instructions
2
3- [Installation](#installation)
4 - [Linux](#linux)
5 - [OS X](#osx)
6 - [Homebrew](#homebrew)
7 - [Non-Homebrew](#non-homebrew)
8 - [Windows](#windows)
9- [Usage](#usage)
10
11<a name="installation" />
1##Installation 12##Installation
2 13
14<a name="linux" />
3###Linux: 15###Linux:
4 16
5Build dependencies: 17Build dependencies:
@@ -40,8 +52,10 @@ Or you could just build everything that is supported on your platform by running
40make 52make
41``` 53```
42 54
43###OSX: 55<a name="osx" />
56###OS X:
44 57
58<a name="homebrew" />
45####Homebrew: 59####Homebrew:
46``` 60```
47brew install libtool automake autoconf libconfig libsodium 61brew install libtool automake autoconf libconfig libsodium
@@ -50,6 +64,7 @@ make
50sudo make install 64sudo make install
51``` 65```
52 66
67<a name="non-homebrew" />
53####Non-homebrew: 68####Non-homebrew:
54 69
55Much the same as Linux, remember to install the latest XCode and the developer tools (Preferences -> Downloads -> Command Line Tools). 70Much the same as Linux, remember to install the latest XCode and the developer tools (Preferences -> Downloads -> Command Line Tools).
@@ -69,6 +84,7 @@ Another thing you may want to install is the latest gcc, this caused me a few pr
69no longer includes gcc and instead uses LLVM-GCC, a nice install guide can be found at 84no longer includes gcc and instead uses LLVM-GCC, a nice install guide can be found at
70http://caiustheory.com/install-gcc-421-apple-build-56663-with-xcode-42 85http://caiustheory.com/install-gcc-421-apple-build-56663-with-xcode-42
71 86
87<a name="windows" />
72###Windows: 88###Windows:
73 89
74You should install: 90You should install:
@@ -100,3 +116,8 @@ Or you could just build everything that is supported on your platform by running
100```bash 116```bash
101mingw32-make 117mingw32-make
102``` 118```
119
120<a name="usage" />
121## Usage
122
123- [Start Guide](start_guide.md)