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
Specifying FCFLAGS when running configure, for example:
$ FCFLAGS=-O3 FC=ifort ./configure
does not affect what flags are being used when running make. In fact, the flags are always -Wall -O0 -C -fbacktrace, which are the gfortran flags hardwired in src/lib/Makefile.am:
I "think" this is now fixed. I've done my own testing, and it looks OK.
It could definitely use some testing by others though, esp. where other compilers are concerned. I have not been able to perform configuration tests in the presence of alternative compilers.
Specifying FCFLAGS when running configure, for example:
does not affect what flags are being used when running
make
. In fact, the flags are always-Wall -O0 -C -fbacktrace
, which are the gfortran flags hardwired insrc/lib/Makefile.am
:Specifying FC works as expected.
@blippy can you look into this at your convenience? Thanks!
The text was updated successfully, but these errors were encountered: