I want to add several C++ libraries, such as Boost, to work in Mac. How can I do that?
Asked
Active
Viewed 1,822 times
1
-
1There is a boost specific question here http://stackoverflow.com/questions/104322/how-do-you-install-boost-on-macos – Aesthete Dec 14 '12 at 04:27
-
This is why I switched to Linux. – Leonid Volnitsky Dec 14 '12 at 06:19
1 Answers
1
If you have homebrew installed boost can easily be installed from the command line:
brew install boost
Depending on what the other libraries you want to install are you can do the same with those. Just make sure it's a "Formula" check here. If it's not a "Formula" then read the documentation for the library about installation on osx.

Dillon Benson
- 4,280
- 4
- 23
- 25