-
Notifications
You must be signed in to change notification settings - Fork 38.7k
[27.x] More backports #31422
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
[27.x] More backports #31422
Conversation
Renames the `MIN` macro to `_TRACEPOINT_TEST_MIN`. From bitcoin#31418: ``` stderr: /virtual/main.c:70:9: warning: 'MIN' macro redefined [-Wmacro-redefined] 70 | #define MIN(a,b) ({ __typeof__ (a) _a = (a); __typeof__ (b) _b = (b); _a < _b ? _a : _b; }) | ^ include/linux/minmax.h:329:9: note: previous definition is here 329 | #define MIN(a,b) __cmp(min,a,b) | ^ 1 warning generated. ``` fixes: bitcoin#31418 Github-Pull: bitcoin#31419 Rebased-From: 00c1dbd
6d7bc9d to
01adb69
Compare
|
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers. Code Coverage & BenchmarksFor details see: https://corecheck.dev/bitcoin/bitcoin/pulls/31422. ReviewsSee the guideline for information on the review process.
If your review is incorrectly listed, please react with 👎 to this comment and the bot will ignore it on the next update. |
This change corrects an issue where CXXFLAGS were mistakenly overridden by CFLAGS. Github-Pull: bitcoin#31502 Rebased-From: a10bb40
01adb69 to
86ee080
Compare
This change resolves an issue where a missing space caused the value of
the `build_AR` variable to be concatenated with the "NM=" string. This
resulted in subsequent calls to `${AR}` and `${NM}` failing.
Github-Pull: bitcoin#31627
Rebased-From: 8a46286
…p2p_msgs Inspired by: 00c1dbd (bitcoin#31419) Github-Pull: bitcoin#31623 Rebased-From: f93f0c9
86ee080 to
78bf705
Compare
78bf705 to
25f1503
Compare
stickies-v
left a comment
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.
ACK 25f1503
I've verified that all backported commits are clean, and they seem sensible. The CI failure seems unrelated, and I could not reproduce locally with ./test/functional/test_runner.py --previous-releases --filter wallet_upgradewallet. It was reported in #31210 and fixed in #30125, but backporting the (quite extensive) fix commit probably is not necessary for this PR?
I agree, I'm not planning on backporting that here. |
Backports:
CXXFLAGSon NetBSD #31502MINmacro to_TRACEPOINT_TEST_MINin log_raw_p2p_msgs #31623