Questions tagged [fujitsu-fortran]

5 questions
3
votes
1 answer

Passing non-contiguous argument to contiguous dummy array in a Fortran procecdue

Recently I encountered unexpected behavior of Fujitsu Fortran Version 2.0.0 while dealing with a subroutine which has dummy array with the contiguous attribute. I have reduced the problem to a simple example which is here: program test INTEGER,…
1
vote
0 answers

Make external callback function accessible to other routines in Fortran (LF95)

I have a very similar problem to the one described here: Make external functions accessible for other functions/modules in Fortran I'm working with a DLL compiled from Fortran source code, using the Lahey/Fujitsu LF95 compiler and I'm trying to…
Mike Dinescu
  • 54,171
  • 16
  • 118
  • 151
0
votes
1 answer

Error 'Missing name' with intersection format and Lahey/Fujitsu Fortran compiler

I am using Lahey/Fujitsu Fortran 95 compiler for a fixed format code (.FOR) which has many include files. I am planning to change a couple of files to .F90 and would like to have include files with intersection format ( essentially fixed format…
RS_DFI
  • 13
  • 3
0
votes
1 answer

Fortran unable to call external library

I am trying to use an external library called "decomp_2d" with my fortran program. I have an environment variable declared "DECOMP2D" which points to the directory where "decomp_2d" is located. This directory has the following…
Pradeep Kumar Jha
  • 877
  • 4
  • 15
  • 30
-1
votes
1 answer

Coding a fortran 77 program to a subroutine

I have been given the task of making a gui for a fortran 77 program. To do so I am using a Lahey Fujitsu compiler and wisk, which is essentially a bare bones version of winteracter . Now i am coding the gui portion in 90, to be honest right now i…