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
gcc 11 defaults to c++17, which introduces std::byte, which causes a lot of breakage when compiling src/utils/lib/CryptoPP.hsrc/utils/lib/CryptoPP.{cc,h} .
Apparently the problem has been anticipated upstream, https://cryptopp.com/wiki/Std::byte , and somewhat address with cryptopp 6.x . (while mldonkey has 5. x according to the header). For the time being, doing CXXFLAGS=-std=c++14 works; but it is probably best upgrading...
The text was updated successfully, but these errors were encountered:
gcc 11 defaults to c++17, which introduces
std::byte
, which causes a lot of breakage when compilingsrc/utils/lib/CryptoPP.hsrc/utils/lib/CryptoPP.{cc,h}
.Apparently the problem has been anticipated upstream,
https://cryptopp.com/wiki/Std::byte , and somewhat address with cryptopp 6.x . (while mldonkey has 5. x according to the header). For the time being, doing
CXXFLAGS=-std=c++14
works; but it is probably best upgrading...The text was updated successfully, but these errors were encountered: