How can I fix the Fortran module problem with gfortran?

  • Context: Fortran 
  • Thread starter Thread starter mgborja
  • Start date Start date
  • Tags Tags
    Gfortran module
Click For Summary
SUMMARY

The forum discussion addresses a common issue encountered when using gfortran for compiling Fortran code. The user faced a fatal error due to the incorrect file type of 'module.mod', which was mistakenly recognized as an audio file instead of a Fortran module file. The solution involved renaming the module file to 'mod_module.f' and ensuring both module and main files were compiled together using the command 'f95 -o main mod_module.f main.f' to create an executable. This approach resolved the issue by adhering to the correct file extensions and compilation order required by Fortran.

PREREQUISITES
  • Understanding of Fortran 95 syntax and structure
  • Familiarity with gfortran compiler and its usage
  • Basic command line operations in a Linux environment
  • Knowledge of file extensions and their significance in programming
NEXT STEPS
  • Learn how to create and manage Fortran modules effectively
  • Explore the gfortran compiler options and flags for optimization
  • Study the differences between Fortran file extensions (.f, .mod) and their implications
  • Investigate the use of makefiles for compiling Fortran projects
USEFUL FOR

This discussion is beneficial for novice and intermediate Fortran developers, particularly those working with gfortran on Linux, as well as anyone troubleshooting module-related compilation errors in Fortran projects.

mgborja
Messages
2
Reaction score
0
Hi!

I am writing a simple code to get familiar with creating Fortran module. The program consist of a main.f and a module.mod file. When I type in:

Code:
gfortran main.f

I get the following error:

Code:
Fatal Error: File 'module.mod' opened at (1) is not a GFORTRAN module file

I think I found the problem but I don't know how to fix it. It turns out that module.mod is a file with property type: Amiga SoundTracker audio (audio/x-mod). The extention .mod is being recognized by defult as an audio file and not as a Fortran text file.

I have done every thing I can. I changed the "open with" option to open with GVim by defult but that does not change the file type to a Fortran text file. I also tried changing the name to module.f which changes the property type to Fortran source code (text/x-fortran) but then when I execute the main,f file I get this error instead:

Code:
Fatal Error: Can't open module file 'module.mod' for reading at (1): No such file or directory

The file <filename> and stat <filename> commands have not helped eather. It seems like an easy problem to fix but I just don't know how :(

Please help
 
Last edited:
Technology news on Phys.org
I'm not expert in Fortran, and haven't written any code in that language for about 15 years. With that said, I believe that your file extension is throwing off the compiler. The file extension should be .f, not .mod.

As far as your fatal error is concerned, I'm betting that your make file still has module.mod listed in it.
 
Ok ... I found out how to solve my problem so I am going to post this for any other people out there who happen to run into the same thing:

note: I am using linux as my operating system, vim as my text editor, and fortran 95 as my compiler

on linux comand line:
Code:
vim main.f                       # create and save main.f note: main is the name of the main file 
vim mod_module.f                 # create and save mod_module.f note: moduel is the name of the module file and mod_ is a prefix type of extention
cat mod_module.f                 # you should see your code as an output
cat main.f                       # output code
f95 -o main mod_module.f main.f  # this will create an executable file
./main                           # execute the file created

Apparently fortran needs to execute everything all at once so it needs to create an executable file. This helped me get around the .mod problem because in order to create the executable file I only needed .f files. Note the module files must be compiled before the main file.

:smile:
 

Similar threads

  • · Replies 17 ·
Replies
17
Views
7K
  • · Replies 1 ·
Replies
1
Views
6K
  • · Replies 14 ·
Replies
14
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 3 ·
Replies
3
Views
6K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 9 ·
Replies
9
Views
9K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 0 ·
Replies
0
Views
2K
  • · Replies 13 ·
Replies
13
Views
5K