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
{{ message }}
This repository has been archived by the owner on Oct 23, 2020. It is now read-only.
which causes the *.o and *.mod files to be deleted before they are compiled. This forces every source file in a directory to be re-compiled at each invocation of make, leading to a lot of unnecessary compilation in some situations. I believe this is related to issue with Fortran .mod files and make, e.g.: http://lagrange.mechse.illinois.edu/f90_mod_deps/
and it does not appear that there is a simple solution, but I'm curious if it is possible to improve the current implementation.
The text was updated successfully, but these errors were encountered:
MPAS Makefiles include this line:
which causes the
*.o
and*.mod
files to be deleted before they are compiled. This forces every source file in a directory to be re-compiled at each invocation of make, leading to a lot of unnecessary compilation in some situations. I believe this is related to issue with Fortran .mod files and make, e.g.:http://lagrange.mechse.illinois.edu/f90_mod_deps/
and it does not appear that there is a simple solution, but I'm curious if it is possible to improve the current implementation.
The text was updated successfully, but these errors were encountered: