Re: [Numpy-discussion] How to tell numpy to use gfortran as a, compiler

2007-02-28 Thread Jon Wright
>Date: Sun, 25 Feb 2007 15:43:03 +0100 (CET) >From: "Sturla Molden" <[EMAIL PROTECTED]> >Subject: Re: [Numpy-discussion] How to tell numpy to use gfortran as a > compiler ? >Content-Type: text/plain;charset=iso-8859-1 > > [...] >There is a third F

Re: [Numpy-discussion] How to tell numpy to use gfortran as a compiler ?

2007-02-26 Thread David Cournapeau
Robert Kern wrote: > David Cournapeau wrote: > >> Sturla Molden wrote: >> >>> g77 is a Fortran 77 compiler. The development of g77 is halted. >>> >>> gfortran is a Fortran 77, 90, and 95 compiler. It is the current Fortran >>> compiler in the GNU Compiler Collection (GCC). >>> >>> >>> You c

Re: [Numpy-discussion] How to tell numpy to use gfortran as a compiler ?

2007-02-25 Thread Robert Kern
David Cournapeau wrote: > Sturla Molden wrote: >> >> g77 is a Fortran 77 compiler. The development of g77 is halted. >> >> gfortran is a Fortran 77, 90, and 95 compiler. It is the current Fortran >> compiler in the GNU Compiler Collection (GCC). >> >> >> You can compile the reference implementation

Re: [Numpy-discussion] How to tell numpy to use gfortran as a compiler ?

2007-02-25 Thread David Cournapeau
Sturla Molden wrote: > > > g77 is a Fortran 77 compiler. The development of g77 is halted. > > gfortran is a Fortran 77, 90, and 95 compiler. It is the current Fortran > compiler in the GNU Compiler Collection (GCC). > > > You can compile the reference implementation of BLAS and LAPACK with both >

Re: [Numpy-discussion] How to tell numpy to use gfortran as a compiler ?

2007-02-25 Thread Sturla Molden
> Robert Kern wrote: > But now, I think I misunderstand some things : I thought that g77 was > the 3.* version of the fortran compiler, and gfortran the 4.* one. But > it looks like they are also different in the fortran dialect they are > supporting (I know nothing about fortran). So should I use

Re: [Numpy-discussion] How to tell numpy to use gfortran as a compiler ?

2007-02-24 Thread David Cournapeau
Robert Kern wrote: > David Cournapeau wrote: >> Hi, >> >> I try to compile numpy using gfortran, using: >> >> python setup.py config --fcompiler=gnu >> >> But this does not work. Whatever option I try, numpy build system >> uses g77, and as a result, I have problems with my ATLAS libra

Re: [Numpy-discussion] How to tell numpy to use gfortran as a compiler ?

2007-02-24 Thread Robert Kern
David Cournapeau wrote: > Hi, > > I try to compile numpy using gfortran, using: > > python setup.py config --fcompiler=gnu > > But this does not work. Whatever option I try, numpy build system > uses g77, and as a result, I have problems with my ATLAS library > compiled with gfortr

[Numpy-discussion] How to tell numpy to use gfortran as a compiler ?

2007-02-24 Thread David Cournapeau
Hi, I try to compile numpy using gfortran, using: python setup.py config --fcompiler=gnu But this does not work. Whatever option I try, numpy build system uses g77, and as a result, I have problems with my ATLAS library compiled with gfortran. What should I do to compiler numpy wit