How to extract the Boost interprocess library

2019-05-09 13:40发布

问题:

I have a small project that is using only the boost::interprocess part from the Boost library.

Is there an easy way of extracting all needed files only for that part of the library?

回答1:

Use the Boost BCP utility. To extract interprocess only, you could use:

$ mkdir /tmp/interprocess #bcp needs this
$ bcp interprocess /tmp/interprocess

This copies interprocess and dependencies to /tmp/interprocess.



标签: boost