Reputation: 19
I am trying to build boost json to get libboost_json.a . tried using --with-json option but it never generates .
my config says its building , but I do not see this lib getting generated , enter image description here
Upvotes: 1
Views: 637
Reputation: 1
when u use b2 to build the boost library, just append this option like: 'cxxstd=11' or maybe u build in cpp std 14, then use this option to instead: 'cxxstd=14'
./b2 cxxstd=11 install
Upvotes: 0
Reputation: 5353
If you have the Boost distribution and you build the libraries yourself, Boost.JSON should certainly get built. And binary distributions of Boost from specific packages should have a prebuilt Boost.JSON static and/or dynamic library.
Boost.JSON is available in Boost 1.75.0 and later.
Upvotes: 0