How to extract the Boost interprocess library

那年仲夏 提交于 2020-01-13 11:52:20

问题


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.



来源:https://stackoverflow.com/questions/2150836/how-to-extract-the-boost-interprocess-library

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!