-
Notifications
You must be signed in to change notification settings - Fork 180
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
Update to C++20 #3193
Update to C++20 #3193
Conversation
3d8979c
to
8d38c34
Compare
CMakeLists.txt
Outdated
@@ -189,7 +188,6 @@ include_directories(SYSTEM third-party/inja) | |||
# Enable SSL Support, most URLs now-a-days use SSL! | |||
# TODO - probably integrate with ZSTD since we have it already | |||
set(CURL_USE_LIBSSH2 OFF) | |||
set(CURL_ZLIB OFF) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
curious if you found a reason this wasn't needed, I unfortunately can't remember if I had a good reason why I added it -- but i know it was when i was troubleshooting why the binaries were expecting some libraries to be dynamically linked
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was getting linker errors with this option set. But I can't reproduce them now 🤔
Mostly just tagging stuff for runtime formatting
Not permitted in c++20
in c++20 these are not compatible with normal string
…use dynamic linking errors on next release
Just putting this here for consideration, I'm personally not in a big rush to get it.