-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
build: enable experimental Cxx20 support #4600
Conversation
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.
Would be nice to have a ci job with --enable-c++20
. Let's maybe "upgrade" linux64_cxx17
?
This pull request has conflicts, please rebase. |
760d782
to
4fd24ca
Compare
@@ -59,10 +59,10 @@ elif [ "$BUILD_TARGET" = "linux64" ]; then | |||
export BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports --enable-crash-hooks --with-sanitizers=undefined" | |||
export CPPFLAGS="-DDEBUG_LOCKORDER -DENABLE_DASH_DEBUG -DARENA_DEBUG" | |||
export PYZMQ=true | |||
elif [ "$BUILD_TARGET" = "linux64_cxx17" ]; then | |||
elif [ "$BUILD_TARGET" = "linux64_cxx20" ]; then |
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.
should also tweak .gitlab-ci.yml
Signed-off-by: pasta <pasta@dashboost.org>
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.
utACK
* build: Add optional c++20 compilation option * build: update ax_cxx_compile_stdcxx.m4 to be compatible with c++20 * fix: fix c++20 build error for undefined identifier * ci: enable c++20 build during ci * cxx17 -> cxx20 Signed-off-by: pasta <pasta@dashboost.org>
No description provided.