Tagged Questions

1
vote
1answer
48 views

Associated pointers in derived type? gFortran vs. Intel

Hello, I would like to check if a pointer inside a derived type has already been defined or not. I wrote the following simple code to show you my problem: program test implicit none type y …
0
votes
0answers
14 views

Xcode with fortran

Hi. I'm trying to compile some fortran files in Xcode, using a makefile made by me. The problem is that Xcode can't find gfortran compiler. I have it, because if I go to console and try to compile …
1
vote
1answer
98 views

How to make a fortran executable that runs on Mac OS X 10.5 and 10.6

I'd like to compile a fortran code with gfortran so that it will work on both Mac OS X 10.5 and 10.6. Is there a way to do this? I tried compiling on 10.6 and get this message when I run the …
1
vote
1answer
154 views

Fortran pointer functions: why does this code’s behavior depend on the order of function calls?

Context The toy Fortran code posted below calls two pointer functions. That is, both functions return a pointer. In fact, they're both array pointers. They both attempt to do the same thing, which …
2
votes
1answer
297 views

Mixed language statically linking with gfortran and gcc

Hi, I have some code written in C and Fortran that I want to compile into a statically-linked executable. If I compile the code dynamically (using the -fno-underscoring option for gfortran), it all …
1
vote
4answers
263 views

Writing and calling pure subroutines in Fortran 90 using gfortran

When writing and calling pure subroutines in Fortran 90 using gfortran, how do I find out why the compiler emits this error? Error: Subroutine call to XXXX at (1) is not PURE I'll try to pose my …
0
votes
2answers
119 views

How do I flush output to file after each write with a gfortran Fortran 90 program?

I am running a loop in a Fortran 90 program that outputs numerical values to an output file for each iteration of the loop. The problem is that the output is not saved to the file but every so many …
0
votes
3answers
288 views

What’s the easiest way to read .dbf file from gfortran

Hi! I'm using gfortran, I need to write a function that reads records from a .dbf file associated with an ESRI Shapefile. The file I should be able to read is available from internet …
0
votes
1answer
148 views

BLAS subroutines dgemm, dgemv and ddot doesn’t work with scalars?

Hi, I have a Fortran subroutine which uses BLAS' subroutines dgemm, dgemv and ddot, which calculate matrix * matrix, matrix * vector and vector * vector. I have m * m matrices and m * 1 vectors. In …
3
votes
3answers
274 views

How to find out which compiler was used: g77 or gfortran

Hi, I'm compiling library for a private project, which depends on a number of libraries. Specifically one of the dependencies is compiled with Fortran. On some instances, I've seen the dependency …
1
vote
1answer
463 views

Compilation error while porting from gfortran to ifort

I'm trying to port a program from gfortran to ifort (Intel Fortran Compiler 11). I'm stuck with two files that only compile with gfortran: gfortran -x f77 -c daedrid.ff gfortran -x f77-cpp-input -c …
0
votes
1answer
260 views

gfortran: how to control output directory for .mod files

Is there is a way to put .mod files, generated by gfortran (GCC), into a separate output directory? I know how to place object files or other output with the -o flag as in: gfortran -c test.f03 -o …