-
Notifications
You must be signed in to change notification settings - Fork 42
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 fails with LTO #37
Comments
Thank you for your comment. However, I could not reproduce it in my environment (gcc-4.8.4). It would be helpful if you could provide more information about your environment. |
On Gentoo we have GCC 13 (gcc and gfortran frontends). Likely you'll need a recentish GCC as the diagnostic passes in GCC have gotten a lot more powerful over the years. |
Thank you for your reply. Can you give us some information now about the purpose of the flags you specified? |
What happens if you add '-fno-strict-aliasing', as the error message suggests? |
@anishida To quote a Gentoo Bugzilla ticket which provides a brief explanation of the flags above:
|
It doesn't help. The compiler diagnostic suggests it automatically, because it tells the compiler to pessimize the code generation (produce worse code, but refrain from trying to optimize by assuming the code is correct) and lto type mismatches can coincide with aliasing issues. But then the compiler still emits an lto type mismatch.
Even though -fno-strict-aliasing is used, the LTO optimizer still sees a type mismatch and diagnoses it as a dangerous problem. It also still suggests again you may want to use -fno-strict-aliasing "if you aren't already", which I think happens because the lto-wrapper doesn't know how the code was originally compiled during the first pass? |
What if there is no '-Werror=strict-aliasing'? |
Specifically, LIS_INT is used instead of int or long int so that it can be switched depending on the settings in the configure script. This is probably the cause of the problem. |
I'd like to back up a bit. This is actually not about -Werror=strict-aliasing at all. I have that flag as it's one of several possible issues that can indicate miscompilation, but it's not triggering issues with lis anyway. The following minimal flags are sufficient to reproduce on my GCC 13 gentoo system:
(Note that fno-strict-aliasing is used to demonstrate that despite the warning suggesting to try it and see if it helps, it doesn't help. The fdiagnostics-color flag simply provides pretty colored output so it's easier to manually read the logs.) The resulting compile error:
|
What if there is also no 'Werror=lto-type-mismatch'? From the error message, it seems that this option is also related to LIS_INT. |
I discuss this in my initial report:
I would prefer not to remove a diagnostic flag that informs me that there is a coding error in the source code. The "correct" solution is to make sure that the Fortran code and the C code agree on what type is being used for the interface in question. I'm not sure how hard that is -- it may be more complicated due to the nature of multiple languages (especially older Fortran standards) but I simply lack experience with Fortran so I couldn't tell you for sure... |
Thank you for your reply. So far, there have been no reports of errors in this library. |
I tried to build with the following *FLAGS to optimize the build:
-flto=4 -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing
Note the -Werror=* flags are used to help detect cases where the compiler tries to optimize by assuming UB cannot exist in the source code -- if it does exist, ordinarily the code would be miscompiled, and this says to make the miscompilation a fatal error.
I got this error:
Downstream report: https://bugs.gentoo.org/927587
Full build log: build.log
The text was updated successfully, but these errors were encountered: