summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-07-21 14:23:00 -0700
committerirungentoo <irungentoo@gmail.com>2013-07-21 14:23:00 -0700
commit8563b0b3b31486321d385733a3e9027be797a0ce (patch)
treebfb1fbb3adaff24a0b539e27e970038d6b1728b7
parent550725c11a4a1f86a9e9aea13414b2222e82edbb (diff)
parenteccdd8010150176182a4a3cf3cb0698171dc3142 (diff)
Merge pull request #74 from mouseym/patch-1
Update 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```