gfortran is the GNU Fortran compiler

learn more… | top users | synonyms

-5
votes
0answers
44 views

How to run my Fortran code on Mac?

GCC successfully complie my Fortran code and created .exe file. Then how can I run that .exe to file to check my Fortran program work properly? I'm running it on Macbook. .exe file is not ...
3
votes
1answer
89 views

Segmentation fault when calling a Delphi function from Fortran

I have a Fortran 90 program which repeatedly calls on a Delphi function. The function gets called a large number of times but eventually the program quits with a segmentation fault. I have an ...
0
votes
1answer
32 views

regarding locking up file access in Gfortran

In Intel FORTRAN I could simply write share ='denyrw' in the open statement to prevent a file from multiaccess. However in GNU FORTRAN the statement seemed not working. What is the correct syntax to ...
0
votes
1answer
25 views

Allocatable Array Error when going from g95 to gfortran

Pardon me but I am fairly new to coding and this blog... When transitioning from using the g95 compiler to gfortran I get the following error when I try to compile what previously had been a working ...
0
votes
1answer
22 views

write in array format in fortran

I try to write an output file.dat with an nxn matrix format . I write the code but the output is a column of value f. Now the problem is: how can i change the output-format of the file to write? ...
0
votes
1answer
37 views

Fortran behavior of a tiny program

I am new in fortran90 (30 minutes ago...) and I have this program: program example1 implicit none real (kind=8) :: x,y,z x = 3.d0 y = 2.d-1 z = x + y print *, "y = ", y ...
0
votes
0answers
83 views

Output of program depends on arbitrary print statements?

I have a Fortran 95 code whose output seems to be a function of things that it shouldn't be a function of. Specifically, the following scenerio is happening: Run code with version A; it doesn't work ...
0
votes
0answers
12 views

why move_alloc is not working in gfortran (4.6.3), but it is in ifort?

I've read here that move_alloc works since gfortran 4.2. I'm with gfortran 4.6 installed in my ubuntu 12.04 but move_alloc is not working! The move_alloc is used five times inside a loop that runs 10 ...
0
votes
1answer
47 views

Compiling a fortran 90 program under cygwin/gfortran error messages?

In the Cygwin terminal I enter $ gfortran -o threed_euler_fluxes_v3.exe threed_euler_fluxes_v3.f90 and I get the compiler error ...
0
votes
1answer
20 views

gfortran 4.8.0 bug? Return type mismatch of function

I just use gfortran 4.1.2 and gfortran 4.8.0 to compile the following simple code: function foo(a, b) result(res) integer, intent(in) :: a, b integer res res = a+b end function foo ...
2
votes
1answer
106 views

Can GDB be used to print values of allocatable arrays of a derived type in Fortran 90?

I have the following data structure in a Fortran90 program: TYPE derivedType CHARACTER(100) :: name = ' ' INTEGER :: type = 0 REAL(KIND(1.0D0)) :: property = 0.0 END ...
3
votes
2answers
49 views

Numerical Precision in Fortran 95:

I have the following Fortran code: Program Strange Real(Kind=8)::Pi1=3.1415926535897932384626433832795028841971693993751058209; ...
0
votes
1answer
28 views

How to supress warning for “Deleted feature: PAUSE statement” in gfortran?

I googled it but i could not find the answer. How can I suppress this warning AND ONLY THIS: Warning: Deleted feature: PAUSE statement at (1) i know I can supress all the warning but I wanna ...
1
vote
2answers
37 views

gfortran WRITE and FORMAT not appearing to need to conform on intel comiler

[NOTE: contains repetition of previous question but posted separately as separate issues] I am compiling a program which is known to compile with ifort using gfortran. However the compiler fails on ...
0
votes
2answers
31 views

gfortran - assign string to parameter

[NOTE: contains repetition of previous question but posted separately as separate issues] I am compiling a program which is known to compile with ifort using gfortran. However the compiler fails on ...
2
votes
1answer
46 views

fortran 1.0D0, D0 required or compile fail

[NOTE: contains repetition of previous question but posted separately as separate issues] I am compiling a program which is known to compile with ifort using gfortran. However the compiler fails on ...
0
votes
0answers
41 views

Fortran tab removal error

I am compiling a program which is known to compile with ifort using gfortran. As the program contains many tabs the compiler throws up errors informing me that tab is not part of standard fortran, but ...
0
votes
2answers
84 views

Fortran fomat statement with highest precision in the system

Someone wanting less precision would write 999 format ('The answer is x = ', F8.3) Others wanting higher output precision may write 999 format ('The answer is x = ', F18.12) Thus it totally ...
1
vote
1answer
73 views

Different results from ifort and gfortran when defining my own TYPE

I'm new to Fortran, but am generally finding that I can do most things that I could with C or Matlab, once I get my head around modules and types. However, I'm stumped by this difference in results, ...
1
vote
1answer
79 views

gfortran error while installing using homebrew

Any help with this problem which I faced while trying gfortran using homebrew. Thank you very much in advance. bash-3.2$ brew install gfortran Warning: gfortran-4.8.0 already installed, it's ...
2
votes
1answer
71 views

Fortran Arithmetic Exception

This is a short question but I have tried to give as much detail as possible. I am compiling an old, but still actively developed, fortran code (f77 standard) on Scientific Linux. The recommended ...
0
votes
1answer
51 views

How solve Fortran runtime error using Amber12

Im using amber12 software used for molecular mechanical force fields for the simulation of biomolecules, i follow the installation instructions described in the next link Intallation of amber in Mac ...
1
vote
1answer
97 views

Compaq Visual Fortran versus gfortran FORMAT statement differences

I have a huge piece of Fortran code and I want to compile that code with gfortran. I have not worked with Fortran before. I do not know exactly what specification the code is of, but I found out that ...
1
vote
1answer
39 views

mpif90 -v does not create object file with flag openmp

I am compiling a third-part software, with mpif90, that in my case is the mpi version of gcc. The package comes with a makefile. After compiling the object files, the makefile creates the archive ...
0
votes
1answer
104 views

gfortran, unclassifiable statement and format labels not defined

I have the following subroutine, which compiles using the intel fortran compiler but does not compile using gfortran. This is the subroutine code: subroutine makepar ...
0
votes
1answer
51 views

In Fortran, is the stop intrinsic expected to print a 'STOP' in standard output?

I often use the stop intrinsic in Fortran to stop the execution for various reasons (mainly after fails in tests). program test1 stop end program does not do anything but stop the program ...
1
vote
1answer
82 views

Fortran - Maxval returns weird results when dimension is specified

I have a 3x2 array and have filled it with the numbers 1-6 so that it looks like 1 4 2 5 3 6 I then call maxval on it, and specify that I wish to find the max value along dimension 1. One would ...
0
votes
1answer
27 views

free_pi_tree error with gfortran

I get a weird error when I attempt to compile some code I'm writing. I have several Fortran modules that I use for linear algebra computations; I don't want to make an application have to use all of ...
1
vote
1answer
50 views

Fortran Syntax Basics?

So I am trying to get my Fortran 95 code to work just for basic function and program definitions. I get practically an error for every line saying "Unexpected" or "Unclassified". I wonder if it is my ...
1
vote
0answers
74 views

Is it possible to make isnan() work in gfortran -O3 -ffast-math?

I would like to compile a program with gfortran and -O3 -ffast-math enabled, since it gives a nice performance boost. I was rather confused, that gfortran's isnan() catched some NaN's but not all of ...
0
votes
0answers
54 views

comparing derived types in fortran

I was trying to compile a project which solves the Navier-Stokes on a sphere available here: https://fms.gfdl.noaa.gov/gf/ the default compiler used is ifort, and I wanted to use gfortran, since I ...
0
votes
1answer
57 views

Linking C module to Fortran program while using OpenMPI: malloc causes segfault instead of null

I've got an old and messy Fortran program that uses MPI. It has one small module written in C, which tries to determine the largest allocatable block in the memory by calling malloc() iteratively ...
1
vote
2answers
75 views

Using python-ctypes to interface fortran with python

Experience: fortran for about 3 months python - intermediate : never used the ctypes module in python before this I was looking for a way to use the fortran code for my doctoral work in python - ...
0
votes
1answer
47 views

Installing a fortran package with gfortran

I want to install this package on two different machines. http://www.2decomp.org/download.html On my Mac laptop, when I am using the Makefile.inc.x86 as my Makefile.inc, and do a make, it works ...
0
votes
1answer
28 views

Gfortran do loop if-statement error

I have a simple Fortran code, and I am getting an error that I cannot find a solution to. Does anyone know how to fix this? subroutine sort(A,A_done,N,P) ! Sort a real array by algebraically ...
1
vote
1answer
25 views

Strange Error with gfortran:

I just reinstalled my gfortran after upgrading(?) my computer to Mountain Lion. However, even though the command "gfortran -v" definitely shows that it is installed, whenever I try to compile a ...
1
vote
0answers
32 views

f77 code in gfortran - library call

I've inherited an old f77/g77 program from a previous researcher, but have very little Fortran experience. I've worked through most of the syntax conversion in the file, but I'm running into an issue ...
0
votes
1answer
53 views

How to set path to `gfortran` in Eclipse?

A colleague got a new mac, and he codes with Eclipse and gfortran. And Makefiles. But now he cannot build. I figured that Eclipse does not use the same PATH as shell, so while Eclipse is happy to ...
0
votes
1answer
110 views

ld: library not found for -lgfortran - Mac Symlink issue?

I am trying to install ObsPy with pip. The installation fails on the cc command below: cc -bundle -undefined dynamic_lookup -L/usr/local/lib -L/usr/local/opt/sqlite/lib ...
0
votes
1answer
21 views

In case of redundant optimization flags, which one gets implemented?

I have the following gfortran compilation. Which one of the optimization flags (-O or -O2) will actually get implemented by gfortran? I tried doing an octal dump of the resultant object file, but ...
0
votes
1answer
49 views

FORTRAN Read() issue

Hey so I am trying to learn Fortran basics so that I can use it for a basic physics project. I am having trouble with getting input properly. My code is: program main write(*, *) "Enter n:" ...
0
votes
1answer
68 views

How to automatically convert a Fortran90 program whose variables are in double precision into real?

everyone I have a Fortran90 program, and the variables are in double precision or complex*16, now I have to write another program whose variables are in real or complex, and all other things are the ...
0
votes
2answers
85 views

Fortran: Syntax error in CHARACTER declaration

I am trying to run a program, which works fine on my laptop, on a remote supercomputer. But the program is not compiling there. Trying to trace the problem, I reduced the program to the basic minimum, ...
0
votes
1answer
137 views

How do I know if I have ifort installed on my Mac (Snow leopard)?

I have a program that need to be installed with the "gfortran/ifort" compiler. I have a Mac OSX 10.6.8 (Snow Leopard). I know I have gcc installed, because I installed my self (from the gcc package ...
1
vote
1answer
70 views

making dynamic libraries for Atlas (os-x, macports)

so i'm trying to compile Atlas (BLAS+LAPACK) on osx 10.8.2 with gnu4.7 from macports. For a record, this is the configuration i use: ../path/to/configure --prefix=/opt/atlas \ ...
0
votes
1answer
187 views

Fortran I/O, first read is EOF?

I'm trying to use some old FORTRAN code with some new Java code which works in Windows(as an exe) but not in OS X. I try to build it in eclipse and I get make: *** [all] Segmentation fault: 11 so ...
0
votes
2answers
89 views

gfortran does not compile implied do loop

I am trying to initialize an array as follows: program test n = 3 call it(n) contains subroutine it(n) integer n,j integer, dimension(3*(n-1)) :: a=(/(j,j=4,3*n,1)/) write(*,*) a end ...
2
votes
2answers
190 views

Expected a right parenthesis in expression at (1)

I'm trying to compile the following code in gfortran: INTEGER F(10),G(14),LUN(5) DIMENSION MESSG(NMESSG) DATA F(1),F(2),F(3),F(4),F(5),F(6),F(7),F(8),F(9),F(10) 1 / 1H( ,1H1 ,1HX ,1H, ,1H ...
2
votes
1answer
86 views

Why does the following Fortran code allocate on the stack/heap depending on the contents of a derived type?

I do not understand why the following program segfaults with a SIGSEGV if the bar field is present in containerType, and works without problems if it is commented out. I'm on x86_64, compiling with ...
0
votes
2answers
48 views

Fortran 90 formatted output

I have three arrays, x,y,z. I want to print these into a file with a character 'C' in front: write(88,FMT1) 'C',(x(i),y(i),z(i),i=1,187) Where FMT1 is defined as: character(len=10) :: ...

1 2 3 4 5 6