summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authormouseym <evening.occifer@gmail.com>2013-07-21 18:15:05 +0100
committermouseym <evening.occifer@gmail.com>2013-07-21 18:15:05 +0100
commiteccdd8010150176182a4a3cf3cb0698171dc3142 (patch)
tree0abbc20a42e67649724725fb5f09f1c3a1a73338 /INSTALL.md
parent0d26ee9aeda228407d8bf63832385a70c33c946a (diff)
Update INSTALL.md
OSX Instructions added.
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md19
1 files changed, 18 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md
index b4e28379..97bef179 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -27,6 +27,23 @@ For example, to build [`Messenger_test.c`](/others/Messenger_test.c) you would r
27make Messenger_test 27make Messenger_test
28``` 28```
29 29
30###OSX:
31
32Much the same as above, remember to install the latest XCode and the developer tools (Preferences -> Downloads -> Command Line Tools).
33Users running Mountain Lion and the latest version of XCode (4.6.3) will also need to install libtool
34Libtool is easy enough to install, grab it from http://www.gnu.org/software/libtool/ and:
35
36./configure
37make
38sudo make install
39
40Do not install it from macports (or any dependencies for that matter) as they get shoved in the wrong directory
41and make your life more annoying.
42
43Another thing you may want to install is the latest gcc, this caused me a few problems as XCode from 4.3
44no longer includes gcc and instead uses LLVM-GCC, a nice install guide can be found at
45http://caiustheory.com/install-gcc-421-apple-build-56663-with-xcode-42
46
30###Windows: 47###Windows:
31 48
32You should install: 49You should install:
@@ -49,4 +66,4 @@ mingw32-make name_of_c_file
49For example, to build [`Messenger_test.c`](/others/Messenger_test.c) you would run: 66For example, to build [`Messenger_test.c`](/others/Messenger_test.c) you would run:
50```cmd 67```cmd
51mingw32-make Messenger_test 68mingw32-make Messenger_test
52``` \ No newline at end of file 69```