You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BOOST_REGEX will set BOOST_REGEX_LIBS to libboost_regex.so.1.55.0, which in turns creates a dependency from the binary to a very specific version of boost.
BOOST_REGEX_LIBS should be set to libboost_regex.so so that the binary can be used with different versions of boost. It is the package maintainer's job to ensure that the system's runtime loads one of the correct version of boost.
The text was updated successfully, but these errors were encountered:
Suppose that
/usr/lib
has:BOOST_REGEX
will setBOOST_REGEX_LIBS
tolibboost_regex.so.1.55.0
, which in turns creates a dependency from the binary to a very specific version of boost.BOOST_REGEX_LIBS
should be set tolibboost_regex.so
so that the binary can be used with different versions of boost. It is the package maintainer's job to ensure that the system's runtime loads one of the correct version of boost.The text was updated successfully, but these errors were encountered: