Re: [f2py] intel compiler not detected
Nic.Reveles-/[email protected]
| Newsgroups | gmane.comp.python.f2py.user |
|---|---|
| Message-ID | <[email protected]> |
Thanks for the response!
I'm looking into this, but nothing is straightforward. I think the problem likely starts intel.py line 31:
version_match = intel_version_match('32-bit|IA-32')
Which seems to correspond to:
def intel_version_match(type):
# Match against the important stuff in the version string
return simple_version_match(start=r'Intel.*?Fortran.*?(?:%s).*?Version' % (type,))
So a stupid question: how do I print the version string in ifort? The manpage suggests using a -what flag. I don't think this is what is meant though... it seems rather short.
Compilers that are not detected:
1. Intel Fortran 9.1-6565
2. Intel Fortran 10.1-2045
Compiler that is detected:
1. Intel Fortran 11.0-1569
Any clues on how to proceed? Thank you for helping!