- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear all,
I have de following error:
Intel Fortran Compiler for 32-bit applications, Version 9.0 Build 20050430Z Package ID: l_fc_p_9.0.021
Copyright (C) 1985-2005 Intel Corporation. All rights reserved.
Compiler driver / backend version mismatch: unset != 900
Be sure compiler driver and backend programs are in the same directory.
end
But I just have one fortran compiler. I have the Intel C Compiler too and I don't know which could be the problem.
Thanks you very much
Francesc
I have de following error:
Intel Fortran Compiler for 32-bit applications, Version 9.0 Build 20050430Z Package ID: l_fc_p_9.0.021
Copyright (C) 1985-2005 Intel Corporation. All rights reserved.
Compiler driver / backend version mismatch: unset != 900
Be sure compiler driver and backend programs are in the same directory.
end
But I just have one fortran compiler. I have the Intel C Compiler too and I don't know which could be the problem.
Thanks you very much
Francesc
Link Copied
7 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Would you please do the following?
Issue the command
ifort -# yourfile.f
and post the output.
Also, look at the script /opt/intel_fc_9.0/bin/ifort
You will see that it sets up various environment variables. Does it reference any /opt/intel* directory other than /opt/intel_fc_9.0 ?
- Lorri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear Lorry,
First of all, thank you very much for giving me your time.
I am continuing with the error, so I attach 3 files to help you to understand what I am doing wrong.
The first one is the file that I am triing to compile, to install the program of air modelling CMAQ.
The second one is the /opt/intel/fc/9.0/bin/ifort
And the last one, is the copy of the terminal's output.
I hope you will find the error.
Thank you.
Francesc
First of all, thank you very much for giving me your time.
I am continuing with the error, so I attach 3 files to help you to understand what I am doing wrong.
The first one is the file that I am triing to compile, to install the program of air modelling CMAQ.
The second one is the /opt/intel/fc/9.0/bin/ifort
And the last one, is the copy of the terminal's output.
I hope you will find the error.
Thank you.
Francesc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Francesc,
Thank y
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Francesc,
Thank you f
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Francesc,
Thank you for sending the script and output; I see EXACTLY what is wrong.
In your build script - change this:
set FC = /opt/intel/fc/9.0/bin/fortcom
to this:
set FC = /opt/intel/fc/9.0/bin/ifort
You were invoking the "raw" compiler executable, without going through the driver first. All interactions from the user should go through "ifort" not "fortcom".
Also, please change -Mfixed and -Mextend to simply -fixed and -extend.
Okay?
Let us know how that works for you --
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Lorry,
Thank you for all, finally I've could compile the file.
But you say:
Also, please change -Mfixed and -Mextend to simply -fixed and -extend.
And I had the problem that the ifort doesn't have the fuction -extend, I put -fixed -extend_source, because I understand (looking information in internet) that its work is the same as -Mextend.
Again, thank you for your help.
Francesc
Thank you for all, finally I've could compile the file.
But you say:
Also, please change -Mfixed and -Mextend to simply -fixed and -extend.
And I had the problem that the ifort doesn't have the fuction -extend, I put -fixed -extend_source, because I understand (looking information in internet) that its work is the same as -Mextend.
Again, thank you for your help.
Francesc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
RE: -extend
Oh, right, of course. Sorry, my mistake. You were correct, the switch is -extend_source
I'm glad to hear your program is building now!
- Lorri

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page