Re: [f2py] vast fcompiler not found

Pearu Peterson <[email protected]> Fri, 30 Jul 2010 16:29:24 +0300
Newsgroups gmane.comp.python.f2py.user
Message-ID <[email protected]>
On Fri, Jul 30, 2010 at 4:09 PM, Audrey Hureau <[email protected]> wrote:
> Hi everyone,
>
> I need your help about fortran compiler using with f2py.
> I would like to know if you know how to install the vast compiler for
> fotran90 in order to use vast compiler.
> When I use the "f2py -c --help-fcompiler", I can see that --fcompiler=vast
> is available for my platform, but not found.
> Is anyone know how I can get it available?

f2py uses numpy.distutils to find available fortran compilers. In your case,
check out numpy/distutils/fcompiler/vast.py. Try fixing the version pattern
and run

  python vast.py

to test if the compiler was found.

Or send me the output of

  vf90 -v

and I'll try to see what wrong.

Pearu