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
Users should be encouraged to set environment variable FFLAG for the flags they generally want. (Add documentation page.)
Makefile.common will check if FC is set to f77 (which it is by default on some systems) and if so, reset to gfortran (since f77 won't work). Users who want to use ifort or another compiler can set environment variable FC.
Default Makefiles will not have -fopenmp
Remove all the commented out lines in various Makefiles, add documentation to list standard combinations of FC and FFLAGS that users might want to use.
This will clean up Makefiles and also avoid developers checking in modified Makefiles with flags that don't work for others.
The text was updated successfully, but these errors were encountered:
Application/example Makefiles should say:
FFLAGS ?=
and not mention FC.
Users should be encouraged to set environment variable FFLAG for the flags they generally want. (Add documentation page.)
Makefile.common will check if FC is set to f77 (which it is by default on some systems) and if so, reset to gfortran (since f77 won't work). Users who want to use ifort or another compiler can set environment variable FC.
Default Makefiles will not have -fopenmp
Remove all the commented out lines in various Makefiles, add documentation to list standard combinations of FC and FFLAGS that users might want to use.
This will clean up Makefiles and also avoid developers checking in modified Makefiles with flags that don't work for others.
The text was updated successfully, but these errors were encountered: