-
Notifications
You must be signed in to change notification settings - Fork 125
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 CI Ubuntu versions #492
Conversation
The src/main/abi-symbols/abi.dump produced from g++ 9.4 contains
The new-abi.dump produced from g++ 9.5 contains
|
Are we getting a false positive with the ABI check? I can take a look at it later. |
Compiling this branch with g++ 11.4.0 produces a new-abi.dump containing (for example):
Compiling the rel/v1.2.0 branch with g++ 11.4.0 produces a new-abi.dump containing:
|
What compiler did you generate the new ABI dump file with? Taking a look at the compat report, the problems that it's showing are real problems with the ABI, but I'm pretty sure they're false positives, although it does depend on what compiler is being used. Testing with g++ 10.2, I get only 5 problems that all appear to be false positives:
It seems that ubuntu 20 is using g++9.3, which uses C++14 by default. g++ versions 11 and above use C++17 by default. Some of the errors(e.g. I'm pretty sure the ABI check for C++ is only useful if the same C++ standard is used between all of the checks, which is why the abi-check build is only on a specific version of ubuntu(and not latest). From the ABI compliance checker page:
This would imply to me that the change in compiler version and libstdc++ version are enough to make the ABI check fail; we're concerned with the last part(changes in the library API). |
I used g++ 11.4.0 to generate the new ABI dump file using the rel/v1.2.0 source code, i.e. the same version used to build this branch. This was to ensure a change in compiler version was not the issue. Using gdb to disassemble a call to So the problem is abi-dumper.pl not correctly processing the output of |
Is there a way to make the |
No, it is full of magic numbers, which change with every build. The abi-compliance-checker perl project produces a html summary of the differences which is available from a Github link under Run actions/upload-artifact step in the abi-check Github action log. |
This PR moves CI actions off Ubuntu 20 which soon will not be supported