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
We currently have the quick-and-dirty solution for GCC 10 or newer:
FFLAGS = -Wall -O3 -fopenmp $(INCLUDES)
# Note for GCC 10 or newer: add -fallow-argument-mismatch in the above flags
With Ubuntu 22.04 LTS, this will become a more pressing issue, as people will stumble upon it more often without reading the documentation.
We could easily make a condition in the Makefile to check if this is GCC and if it is >=10. Not necessarily now, just documenting the need. We have more pressing issues.
Maybe there is already some fix in the vanilla CalculiX Makefile?
The text was updated successfully, but these errors were encountered:
We currently have the quick-and-dirty solution for GCC 10 or newer:
With Ubuntu 22.04 LTS, this will become a more pressing issue, as people will stumble upon it more often without reading the documentation.
We could easily make a condition in the Makefile to check if this is GCC and if it is
>=10
. Not necessarily now, just documenting the need. We have more pressing issues.Maybe there is already some fix in the vanilla CalculiX Makefile?
The text was updated successfully, but these errors were encountered: