-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Unexpected Boost dependencies when compile in c++11 mode #3011
Comments
zeule
added a commit
to zeule/libtorrent
that referenced
this issue
May 25, 2018
C++ standard and Boost requirements are connected: 1. With C++11 onward, we require Boost system component, with C++03 we need chrono and random components too 2. When building against boost 1.66 and newer, C++11 is required. Closes arvidn#3011, partially closes arvidn#2966.
zeule
added a commit
to zeule/libtorrent
that referenced
this issue
May 25, 2018
C++ standard and Boost requirements are connected: 1. With C++11 onward, we require Boost system component, with C++03 we need chrono and random components too 2. When building against boost 1.66 and newer, C++11 is required. Closes arvidn#3011, partially closes arvidn#2966.
zeule
added a commit
to zeule/libtorrent
that referenced
this issue
May 25, 2018
C++ standard and Boost requirements are connected: 1. With C++11 onward, we require Boost system component, with C++03 we need chrono and random components too 2. When building against boost 1.66 and newer, C++11 is required. Closes arvidn#3011, partially closes arvidn#2966.
zeule
added a commit
to zeule/libtorrent
that referenced
this issue
May 25, 2018
C++ standard and Boost requirements are connected: 1. With C++11 onward, we require Boost system component, with C++03 we need chrono and random components too 2. When building against boost 1.66 and newer, C++11 is required. Closes arvidn#3011, partially closes arvidn#2966.
zeule
added a commit
to zeule/libtorrent
that referenced
this issue
May 25, 2018
C++ standard and Boost requirements are connected: 1. With C++11 onward, we require Boost system component, with C++03 we need chrono and random components too 2. When building against boost 1.66 and newer, C++11 is required. Closes arvidn#3011, partially closes arvidn#2966.
zeule
added a commit
to zeule/libtorrent
that referenced
this issue
May 25, 2018
C++ standard and Boost requirements are connected: 1. With C++11 onward, we require Boost system component, with C++03 we need chrono and random components too 2. When building against boost 1.66 and newer, C++11 is required. Closes arvidn#3011, partially closes arvidn#2966.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
libtorrent version (or branch): RC_1_1
When c++11 is used libtorrent use std::chrono and std::random, but CMake still require boost::chrono and boost::random. Can you make these requirements to be conditional?
The text was updated successfully, but these errors were encountered: