本文介绍了如何提取Boost进程间库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个小项目,仅使用Boost库中的boost::interprocess部分.

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?

推荐答案

使用Boost BCP 实用程序.要仅提取interprocess,可以使用:

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

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

这会将进程间和依赖项复制到/tmp/interprocess.

This copies interprocess and dependencies to /tmp/interprocess.

这篇关于如何提取Boost进程间库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 13:47