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
When linking with lld (from clang-64 MinGW) on windows, with BOOST_ASIO_DYN_LINK:
ld.lld: error: undefined symbol: vtable for boost::asio::execution::bad_executor
Every other symbol is correct, but since the type boost::asio::execution::bad_executor itself is not marked BOOST_ASIO_DECL, then the implicit dtor won't be marked as exported.
The text was updated successfully, but these errors were encountered:
jcelerier
changed the title
boost::asio::execution::bad_executor needs an explicit dtor
boost::asio::execution::bad_executor needs an explicit BOOST_ASIO_DECL
Mar 16, 2025
When linking with lld (from clang-64 MinGW) on windows, with BOOST_ASIO_DYN_LINK:
Every other symbol is correct, but since the type
boost::asio::execution::bad_executor
itself is not markedBOOST_ASIO_DECL
, then the implicit dtor won't be marked as exported.The text was updated successfully, but these errors were encountered: