Tagged Questions
4
votes
1answer
144 views
How do I use boost bcp?
I have the bcp tool, it came pre-built with the boost installer. I'd like to extract the dependencies I need from boost into a smaller file, since I'd like to be able to build this project at school. ...
2
votes
1answer
162 views
Boost BCP doesn't output any files?
I'm trying to use the Boost Copy (BCP) utility to pull the normal_distribution class out of Boost. However, when I do bcp normal_distribution ./my_normal_distribution_dir, nothing appears in the ...
2
votes
1answer
513 views
Where can I find bcp for 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 ...
3
votes
1answer
372 views
Why does bcp calculate such a large dependency list for Boost program_options?
I'm writing a small program using boost/program_options to handle options from command line. Now I want to distribute my code to systems where in general Boost is not installed. So I used the bcp ...
2
votes
1answer
976 views
Getting a buildable Boost extract with bcp
I'm using bcp to extract Boost.Archive from Boost. Unfortunately I can't build this extract. Boost.Archive is not a header-only library.
bjam complains
Unable to load Boost.Build: could not find ...
3
votes
5answers
416 views
Why did Boost's `bcp smart_ptr dir/` copy 6MB of source code?
So I wanted to separate out just the smart pointers from boost to use in my project and I was guided to use bcp utility.
Today I got it compiled and did bcp smart_ptr to_copy_to_my_project/.
The ...