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
build: remove boost_system linkage for boost 1.89+
In boost 1.89, the stub compiled library for Boost.System was removed.
According to the boost 1.89 release notes: "The stub compiled library
has been removed; System has been header-only since release 1.69."
See https://www.boost.org/releases/1.89.0/ .
This change removes boost_system from target_link_libraries() calls
where other boost libraries are already linked. When linking against
other boost components (such as boost_thread, boost_date_time, or
boost_filesystem), the header-only System library dependency is
automatically satisfied, making explicit linkage against the (now
non-existent) compiled boost_system library unnecessary.
This is not a breaking change since the minimum required boost version
for this project is 1.87, where Boost.System was already header-only.
Signed-off-by: Kefu Chai <k.chai@proxmox.com>
0 commit comments