Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find bcp for boost?

Tags:

boost

I have a program that needs to be tested on multiple machines. I've used the program_options library from boost, and would like to include it with my source so I don't have to install boost on every machine.

It seems that bcp takes care of this, but for the life of me I can't find where to actually download bcp.

like image 665
Dean Avatar asked Feb 27 '12 17:02

Dean


2 Answers

Easier answer for mac only.

brew install boost-bcp

You might have to link it too but homebrew spoon feeds it to you

brew link boost-bcp

You can just run it with bcp, be careful because homebrew also has bcp (Broadcast Copy)

like image 95
aaronman Avatar answered Sep 19 '22 14:09

aaronman


Its sources are distributed with Boost. You can find them in boost/tools/bcp. In order to build it, go to the above directory and run ..\..\b2.exe

like image 32
Igor R. Avatar answered Sep 21 '22 14:09

Igor R.