Disadvantages of headings in forcing

I have cloned the current boost sources from the github repository: https://github.com/boostorg/boost , including all revised child repositories.

I have done boostrap and built sources on an OS X machine using the latest Xcode command line tools. The build seems to be working fine.

But in the directory $BOOST_ROOT/boost/

where the header files are linked from the library directories (for example /boost/graph/adjacency_iterator.hpp -> ../../libs/graph/include/boost/graph/adjacency_iterator.hpp

), some of the header files are missing. For example, there is boykov_kolmogorov_max_flow.hpp

in ./libs/graph/include/boost/graph

that is not present in the assembly output. The same happens if I invoke the target install

. Header files are missing at the destination.

What do I need to do so that all header files are included in the assembly. Relations

Joachim

+3


source to share


1 answer


As you can see in the documentation ( Installing Modular Boost ), you should

./bootstrap.sh
./b2 headers

      



to bind headers to include directory when using modular boost

+8


source







All Articles