Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

boost::asio::execution::bad_executor needs an explicit BOOST_ASIO_DECL #448

Open
jcelerier opened this issue Mar 16, 2025 · 1 comment
Open

Comments

@jcelerier
Copy link

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.

@jcelerier 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
@jcelerier
Copy link
Author

hmm.. actually I'm still getting the same link error despite marking everything:

class BOOST_ASIO_DECL bad_executor : public std::exception
{
public:
  /// Constructor.
  BOOST_ASIO_DECL bad_executor() noexcept;
  BOOST_ASIO_DECL virtual ~bad_executor() noexcept;

  /// Obtain message associated with exception.
  BOOST_ASIO_DECL virtual const char* what() const noexcept;
};

BOOST_ASIO_DECL bad_executor::bad_executor() noexcept { }
BOOST_ASIO_DECL bad_executor::~bad_executor() noexcept { }

BOOST_ASIO_DECL const char* bad_executor::what() const noexcept
{
  return "bad executor";
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant