Re: [Plplot-devel] Severe problem with MinGW gfortran

2008-09-08 Thread Arjen Markus
Werner Smekal wrote: > Hi Arjen, > > it must be some misconfiguration of MSYS and your MinGW version(s), > since I was able to compile and run your program but from within a > Windows CLI without problems. > Hi Werner, yes, there definitely is some kind of interaction: MSYS (or g95) defines an

Re: [Plplot-devel] Severe problem with MinGW gfortran

2008-09-08 Thread Arjen Markus
> Hi Arjen, > > maybe an old library is linked to, which contains differently named > functions? Could you try to compile the simple fortran program from the > Windows CLI? run cmd.exe, set the path with > > set PATH=c:\mingw_gcc\bin;%PATH% > > and compile the program. MSYS maybe sets some other en

Re: [Plplot-devel] Severe problem with MinGW gfortran

2008-09-08 Thread Werner Smekal
Hi Arjen, it must be some misconfiguration of MSYS and your MinGW version(s), since I was able to compile and run your program but from within a Windows CLI without problems. HTH, Werner Arjen Markus wrote: > Hello, > > it turns out that my TDM/MinGW gfortran installation is > incapable of li

Re: [Plplot-devel] Severe problem with MinGW gfortran

2008-09-08 Thread Werner Smekal
Hi Arjen, maybe an old library is linked to, which contains differently named functions? Could you try to compile the simple fortran program from the Windows CLI? run cmd.exe, set the path with set PATH=c:\mingw_gcc\bin;%PATH% and compile the program. MSYS maybe sets some other environment va

Re: [Plplot-devel] Severe problem with MinGW gfortran

2008-09-08 Thread Arjen Markus
> Hi Arjen, >> >> The official GCC compilers that I get via TDM do _not_ include >> gfortran, however! So that seems to be the end of the line: >> - the TDM distribution is incomplete >> - the official distribution does not have gfortran > > The official distribution is MinGW 3.4.5 and gfortran was

Re: [Plplot-devel] Severe problem with MinGW gfortran

2008-09-08 Thread Werner Smekal
Hi Arjen, > > The official GCC compilers that I get via TDM do _not_ include > gfortran, however! So that seems to be the end of the line: > - the TDM distribution is incomplete > - the official distribution does not have gfortran The official distribution is MinGW 3.4.5 and gfortran was first a

Re: [Plplot-devel] Severe problem with MinGW gfortran

2008-09-08 Thread Werner Smekal
Hi, as far as I remember one should use gcc 4.2.1 since the (official) alpha release 4.3.0 is quite unstable. I installed them, but never used them to compile plplot, just played around a little bit. Regards, Werner Alan W. Irwin wrote: > On 2008-09-08 20:10+0200 Arjen Markus wrote: > >> Hell

Re: [Plplot-devel] Severe problem with MinGW gfortran

2008-09-08 Thread Arjen Markus
> On 2008-09-08 20:10+0200 Arjen Markus wrote: > >> Hello, >> >> it turns out that my TDM/MinGW gfortran installation is >> incapable of linking even the simplest Fortran 90 programs: > > Hi Arjen: > > If Werner cannot find a way to help you get the > unofficial TDM version to work on your platform

Re: [Plplot-devel] Severe problem with MinGW gfortran

2008-09-08 Thread Alan W. Irwin
On 2008-09-08 20:10+0200 Arjen Markus wrote: > Hello, > > it turns out that my TDM/MinGW gfortran installation is > incapable of linking even the simplest Fortran 90 programs: Hi Arjen: If Werner cannot find a way to help you get the unofficial TDM version to work on your platform, then there is

[Plplot-devel] Severe problem with MinGW gfortran

2008-09-08 Thread Arjen Markus
Hello, it turns out that my TDM/MinGW gfortran installation is incapable of linking even the simplest Fortran 90 programs: I tried to compile this program: ! fmain.f90 -- ! Simple Fortran program using a DLL ! program fmain integer :: x x = 0 !call fvarset( x ) write(*,*) x