Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Header-Files missing in boost build

Tags:

c++

boost

I cloned the current boost sources from the github repository: https://github.com/boostorg/boost including all referenced child repository.

I did boostrap and build the sources on a OS X machine with the latest XCode command line tools. The build seems to work fine.

But in the $BOOST_ROOT/boost/ directory, where the header files are linked from the library directories (e.g. /boost/graph/adjacency_iterator.hpp -> ../../libs/graph/include/boost/graph/adjacency_iterator.hpp), some of the header files are missing. For example there is an boykov_kolmogorov_max_flow.hpp in ./libs/graph/include/boost/graph which is missing in the build output. The same happens if I call the install target. The header files are missing in the destination.

What do I have to do, that all header files get included in the build. Regards

Joachim

like image 346
Joachim Rosskopf Avatar asked Oct 28 '25 05:10

Joachim Rosskopf


1 Answers

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

./bootstrap.sh
./b2 headers

to link the headers to the include directory when using Modular Boost

like image 159
sehe Avatar answered Oct 30 '25 22:10

sehe



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!