Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Boost.Asio without Boost.System

On the Boost System page it is stated that:

The Boost System Library is part of the C++11 Standard Library.

But a number of Boost libraries, such as Asio, depend on Boost System. Is it possible to use the C++11 std stuff instead of Boost System to work with Asio?

like image 718
amfcosta Avatar asked Mar 07 '23 14:03

amfcosta


1 Answers

AFAIR you can configure Boost System to be header-only

enter image description here

Source: http://www.boost.org/doc/libs/1_66_0/libs/system/doc/reference.html

Other than that, you might simply use Non-Boost Asio

like image 196
sehe Avatar answered Mar 15 '23 16:03

sehe