Skip to content
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

fix: Suppress the warning from boost to fix build failure. #4796

Merged
merged 3 commits into from
Apr 28, 2022

Conversation

junaire
Copy link
Contributor

@junaire junaire commented Apr 28, 2022

Signed-off-by: Jun Zhang [email protected]

What problem does this PR solve?

Issue Number: close #4771

Problem Summary:

What is changed and how it works?

Check List

Tests

  • Unit test
  • Integration test
  • Manual test (add detailed scripts or steps below)
  • No code

Side effects

  • Performance regression: Consumes more CPU
  • Performance regression: Consumes more Memory
  • Breaking backward compatibility

Documentation

  • Affects user behaviors
  • Contains syntax changes
  • Contains variable changes
  • Contains experimental features
  • Changes MySQL compatibility

Release note

None

@ti-chi-bot
Copy link
Member

ti-chi-bot commented Apr 28, 2022

[REVIEW NOTIFICATION]

This pull request has been approved by:

  • JaySon-Huang
  • fuzhe1989

To complete the pull request process, please ask the reviewers in the list to review by filling /cc @reviewer in the comment.
After your PR has acquired the required number of LGTMs, you can assign this pull request to the committer in the list by filling /assign @committer in the comment to help you merge this pull request.

The full list of commands accepted by this bot can be found here.

Reviewer can indicate their review by submitting an approval review.
Reviewer can cancel approval by submitting a request changes review.

@ti-chi-bot ti-chi-bot added release-note-none Denotes a PR that doesn't merit a release note. size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. labels Apr 28, 2022
@junaire
Copy link
Contributor Author

junaire commented Apr 28, 2022

/cc @JaySon-Huang

@ti-chi-bot ti-chi-bot requested a review from JaySon-Huang April 28, 2022 09:19
@junaire junaire force-pushed the prevent-warning branch 3 times, most recently from a1894b1 to da11bfd Compare April 28, 2022 12:11
@ti-chi-bot ti-chi-bot added the status/LGT1 Indicates that a PR has LGTM 1. label Apr 28, 2022
@ti-chi-bot ti-chi-bot added status/LGT2 Indicates that a PR has LGTM 2. and removed status/LGT1 Indicates that a PR has LGTM 1. labels Apr 28, 2022
@JaySon-Huang
Copy link
Contributor

/merge

@ti-chi-bot
Copy link
Member

@JaySon-Huang: It seems you want to merge this PR, I will help you trigger all the tests:

/run-all-tests

You only need to trigger /merge once, and if the CI test fails, you just re-trigger the test that failed and the bot will merge the PR for you after the CI passes.

If you have any questions about the PR merge process, please refer to pr process.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository.

@ti-chi-bot
Copy link
Member

This pull request has been accepted and is ready to merge.

Commit hash: 34b9d4f

@ti-chi-bot ti-chi-bot added the status/can-merge Indicates a PR has been approved by a committer. label Apr 28, 2022
@sre-bot
Copy link
Collaborator

sre-bot commented Apr 28, 2022

Coverage for changed files

Filename                                                                                     Regions    Missed Regions     Cover   Functions  Missed Functions  Executed       Lines      Missed Lines     Cover    Branches   Missed Branches     Cover
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
/home/jenkins/agent/workspace/tiflash-build-common/tiflash/dbms/src/Functions/GeoUtils.h         146               146     0.00%          34                34     0.00%         349               349     0.00%         110               110     0.00%
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
TOTAL                                                                                            146               146     0.00%          34                34     0.00%         349               349     0.00%         110               110     0.00%

Coverage summary

Functions  MissedFunctions  Executed  Lines   MissedLines  Cover
18053      10149            43.78%    200029  100941       49.54%

full coverage report (for internal network access only)

@ti-chi-bot ti-chi-bot merged commit f29156f into pingcap:master Apr 28, 2022
@junaire junaire deleted the prevent-warning branch April 28, 2022 13:15
@jiaqizho
Copy link
Contributor

jiaqizho commented May 5, 2022

@JaySon-Huang @fuzhe1989 Can't build-in clang.

/dbms/src/Functions/GeoUtils.h:33:32: error: unknown warning group '-Wunused-but-set-variable', ignored [-Werror,-Wunknown-warning-option]
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
                               ^

@junaire
Copy link
Contributor Author

junaire commented May 5, 2022

@JaySon-Huang @fuzhe1989 Can't build-in clang.

/dbms/src/Functions/GeoUtils.h:33:32: error: unknown warning group '-Wunused-but-set-variable', ignored [-Werror,-Wunknown-warning-option]
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
                               ^

May I ask your clang version? For me everything works fine for Clang trunk.
In fact, this flag is recently added in https://reviews.llvm.org/D100581, and I was surprised they don't even provide a release note...

@JaySon-Huang
Copy link
Contributor

@JaySon-Huang @fuzhe1989 Can't build-in clang.

/dbms/src/Functions/GeoUtils.h:33:32: error: unknown warning group '-Wunused-but-set-variable', ignored [-Werror,-Wunknown-warning-option]
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
                               ^

@jiaqizho What's your error message for compile error? The CI build TiFlash with Clang 13.0.0 and give no warnings/errors https://ci.pingcap.net/blue/organizations/jenkins/tiflash-build-common/detail/tiflash-build-common/4096/pipeline/150

@junaire
Copy link
Contributor Author

junaire commented May 5, 2022

I just realized that the minimal toolchain requirement were not matched in the CMakelists.txt and README. That said cmake will only complain when clang < 5 or gcc < 7. I guess that will confuse some folks especially who first work on the project. If we really just want guarantee tiflash compiles in recent compilers, maybe we should align the requirements in CMakelists.txt @JaySon-Huang @fuzhe1989 @ywqzzy

@JaySon-Huang
Copy link
Contributor

Now we only declare the minimal toolchain requirement in the README.md (and collapsed by default). We have not changed the related warnings in CMakeLists.txt yet.

/cc @SchrodingerZhu

image

@ti-chi-bot ti-chi-bot requested a review from SchrodingerZhu May 5, 2022 07:16
@jiaqizho
Copy link
Contributor

jiaqizho commented May 5, 2022

@JaySon-Huang @fuzhe1989 Can't build-in clang.

/dbms/src/Functions/GeoUtils.h:33:32: error: unknown warning group '-Wunused-but-set-variable', ignored [-Werror,-Wunknown-warning-option]
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
                               ^

@jiaqizho What's your error message for compile error? The CI build TiFlash with Clang 13.0.0 and give no warnings/errors https://ci.pingcap.net/blue/organizations/jenkins/tiflash-build-common/detail/tiflash-build-common/4096/pipeline/150

Apple clang version 12.0.5 (clang-1205.0.22.11)

@junaire
Copy link
Contributor Author

junaire commented May 5, 2022

@JaySon-Huang @fuzhe1989 Can't build-in clang.

/dbms/src/Functions/GeoUtils.h:33:32: error: unknown warning group '-Wunused-but-set-variable', ignored [-Werror,-Wunknown-warning-option]
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
                               ^

@jiaqizho What's your error message for compile error? The CI build TiFlash with Clang 13.0.0 and give no warnings/errors https://ci.pingcap.net/blue/organizations/jenkins/tiflash-build-common/detail/tiflash-build-common/4096/pipeline/150

Apple clang version 12.0.5 (clang-1205.0.22.11)

Good, that's the issue I guess. I don't have a mac so I can't really test it, but the following godbolt link shows that this flag is only supported after clang 13: https://godbolt.org/z/hWr5bss85 Maybe try to use homebrew to get yourself a more recent compiler?

@JaySon-Huang
Copy link
Contributor

We can add a line #pragma GCC diagnostic ignored "-Wunknown-warning-option" before "-Wunused-but-set-variable" to make it compatible with older clang https://github.com/pingcap/tiflash/pull/4784/files

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release-note-none Denotes a PR that doesn't merit a release note. size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. status/can-merge Indicates a PR has been approved by a committer. status/LGT2 Indicates that a PR has LGTM 2.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Fail to build tiflash due to unused variables
6 participants