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
I was not able to compile it on a Debian 11 with plain python 3.9 and gcc10. The first issue is a type mismatch on GCC and the second issue is the order to compile the Fortran files. The spectra.f90 should be the first one to be compiled but distutils does not respect that.
Solutions:
Add the option -fallow-argument-mismatch" to the compile flag.
Create a secondary fake library to force distutil to compile spectra.f90 first (this is hackish) but point me to the solution.
What I did to get it installed and compiled in a pretty hackish manner, don't recommend to anyone, but pointing to what should be properly done on distutils:
I was not able to compile it on a Debian 11 with plain python 3.9 and gcc10. The first issue is a type mismatch on GCC and the second issue is the order to compile the Fortran files. The spectra.f90 should be the first one to be compiled but distutils does not respect that.
Solutions:
-fallow-argument-mismatch"
to the compile flag.What I did to get it installed and compiled in a pretty hackish manner, don't recommend to anyone, but pointing to what should be properly done on distutils:
The text was updated successfully, but these errors were encountered: