You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, our Docker file uses gcc/g++ 7.4 while our CI system uses version 8.3.
When it comes to compilation, this doesn't seem to make any difference, but when it comes to gcov, version 7.4 seems to be buggy and we would benefit from upgrading to version 8.3.
Indeed, my work on code generation relies on having a forward declaration of a structure:
Right now, our Docker file uses
gcc
/g++
7.4 while our CI system uses version 8.3.When it comes to compilation, this doesn't seem to make any difference, but when it comes to
gcov
, version 7.4 seems to be buggy and we would benefit from upgrading to version 8.3.Indeed, my work on code generation relies on having a forward declaration of a structure:
and
gcov
7.4 report that the secondstruct GeneratorEquationAstImpl
is not covered:while it's all fine using version 8.3:
The text was updated successfully, but these errors were encountered: