-
-
Notifications
You must be signed in to change notification settings - Fork 10.9k
allow specifying non-default Fortran compiler with FC env var #13462
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
flang is not added to default_compiler numpy/numpy/distutils/fcompiler/__init__.py Line 747 in 7dbb325
and is only defined for python 3 for some weird reason, numpy/numpy/distutils/fcompiler/pg.py Line 67 in b1d7001
|
Another error I am getting with flang in OpenBSD 6.6 (based on clang 8.0.1) is that it attempts to use it with
Given that the only other Fortran provided on OpenBSD is g95 (very old), it's a show-stopper. Is there a graceful way to remove |
A related question - what is the need for that |
This is another feature request for |
I'll also note that Meson already does the right thing here. |
Using
flang
via setting theFC
environment variable is reported not to be working at scipy/scipy#10125. A-lgfortran
flag is added, when gfortran isn't installed on the system. This is due to the config stage not knowing aboutFC
and always picking upGnuFortranCompiler
if--fcompiler
is not used.The text was updated successfully, but these errors were encountered: