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
should set FC to gfortran, if no other compiler is defined. But on some (don't know on how many) systems FC is preset to f77. Since I don't have f77 (and I doubt it would be able to compile stdlib) the build process fails.
Is there anything we can do about this issue? Maybe check the value of FC if it is set to such a default value and print a error/warning message?
The current warning is a little bit misleading: f77: No such file or directory
Testet on:
Arch Linux, GNU Make 4.3 built for x86_64-pc-linux-gnu
Fedora 35, GNU Make 4.3 built for x86_64-redhat-linux-gnu
The text was updated successfully, but these errors were encountered:
On Arch Linux FC is not set for me. Even when running inside makepkg there is no value in the FC environment variable predefined. Usually CMake is picking up f95 from /usr/bin which is equivalent to gfortran on most platforms.
This line
stdlib/Makefile.manual
Line 3 in 9f1aa24
should set
FC
to gfortran, if no other compiler is defined. But on some (don't know on how many) systemsFC
is preset tof77
. Since I don't havef77
(and I doubt it would be able to compile stdlib) the build process fails.Is there anything we can do about this issue? Maybe check the value of
FC
if it is set to such a default value and print a error/warning message?The current warning is a little bit misleading:
f77: No such file or directory
Testet on:
Arch Linux, GNU Make 4.3 built for x86_64-pc-linux-gnu
Fedora 35, GNU Make 4.3 built for x86_64-redhat-linux-gnu
The text was updated successfully, but these errors were encountered: