我虔诚地遵循http://www.boost.org/doc/libs/1_61_0/more/getting_started/windows.html

下载并解压缩1.61版本的boost之后,我尝试使用本指南5.1节中的说明从源代码构建它。
所以

bootstrap
.\b2

但是然后我得到了错误:
error: Unable to load Jamfile.
error: Could not find a Jamfile in directory 'libs/config/checks/architecture'.
error: Attempted to find it with pattern '[Bb]uild.jam [Jj]amfile.v2 [Jj]amfile [Jj]amfile. [Jj]amfile.jam'.
error: Please consult the documentation at 'http://www.boost.org'.

Trac issue #12173 of boost完全相同。
怎么了?如何使bjam查找果酱文件?

最佳答案

有点过时了,但是我可以通过获取config子模块来使其工作:

git submodule update --init libs/config

似乎config模块是某些其他模块的未列出前提条件。

关于c++ - 全新下载的Boost中缺少Jam文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38433638/

10-13 07:16