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
In addition, fortran tests are not honoring the FFLAGS environment variable. Adding FFLAGS = @FFLAGS@ to src/components/Makefile_comp_tests.target.in appears to fix this issue.
Somewhat related, these 2 conditional blocks in src/components/sde/tests/Makefile and src/components/sysdetect/tests/Makefile could be made more robust by adding an else ifeq check for gfortran-12
This is a known issue that is not easy to resolve as it would require changing a myriad of files in the build system. Note that the sysdetect test Makefile has been amended to fix a bug with intel and cray fortran compiler flags (see #96)
There's a handful of
CC =
lines in Makefiles that should beCC ?=
so it may be properly overridden by a user'sCC
environment variable. Examples:In addition, fortran tests are not honoring the
FFLAGS
environment variable. AddingFFLAGS = @FFLAGS@
to src/components/Makefile_comp_tests.target.in appears to fix this issue.Somewhat related, these 2 conditional blocks in
src/components/sde/tests/Makefile
andsrc/components/sysdetect/tests/Makefile
could be made more robust by adding anelse ifeq
check forgfortran-12
The text was updated successfully, but these errors were encountered: