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