Reputation: 32986
I downloaded boostjam and put it in with the install files and tried to run it, the following error is displayed:
error: error: no Jamfile in current directory found, and no target references specified.
Upvotes: 7
Views: 17362
Reputation: 744
In order to avoid troubles compiling third party libraries that need boost installed in your system, run this:
sudo port install boost +universal
Upvotes: 0
Reputation: 16091
The more modern package manager homebrew does this with a single
$ brew install boost
Upvotes: 20
Reputation: 4431
I found this link helpful. I ended up having to use the following command to ensure 64 bit support as well which I need
./bjam architecture=combined address-model=32_64
Upvotes: 0
Reputation: 100628
If you first install MacPorts, you can install Boost with a single command:
sudo port install boost
Upvotes: 4
Reputation: 10979
Did you download boost archive and unpack it? Why you downloaded bjam? What install files? Bootstrap can compile bjam on your computer. Short story howto install:
If something is still wrong and you come back to ask here around then please write what exactly you did and at what step what happened.
Upvotes: 3