I've had a quick look round and I can't see how to get fortran to output error messages to stderr. I've heard it used to be write(5,fmt=.... as 5 was stderr. I know the way to do it with stdout is to use write(*,fmt=....

How do I do this with an ifort compiler?

link|improve this question

Which version of ifort? They have F2003 support at least for versions 11.1 onward. – tpg2114 Dec 15 '11 at 23:00
Intel(R) Fortran Compiler for applications running on Intel(R) 64, Version 10.0 Build 20070426 Package ID: l_fc_p_10.0.023 Copyright (C) 1985-2007 Intel Corporation. All rights reserved. – Pureferret Dec 16 '11 at 9:17
feedback

3 Answers

up vote 9 down vote accepted

If you have a Fortran 2003 compiler, the intrinsic module iso_fortran_env defines the variables input_unit, output_unit and error_unit which point to standard in, standard out and standard error respectively.

I tend to use something like

#ifdef f2003
use, intrinsic :: iso_fortran_env, only : input_unit=>stdin, &
                                          output_unit=>stdout, &
                                          error_unit=>stderr
#else
#define stdin  5
#define stdout 6
#define stderr 0
#endif

in my input/output routines. Although this of course means preprocessing your source file (to do this with ifort, use the -fpp flag when compiling your source code or change the source file extension from .f to .F or from .f90 to .F90).

An alternative to this would be to write your own, non-intrinsic, iso_fortran_env module (if you don't have a Fortran 2003 compiler), as discussed here. In this example they use a module:

module iso_fortran_env

  ! Nonintrinsic version for Lahey/Fujitsu Fortran for Linux. 
  ! See Subclause 13.8.2 of the Fortran 2003 standard. 

  implicit NONE 
  public 

  integer, parameter :: Character_Storage_Size = 8 
  integer, parameter :: Error_Unit = 0 
  integer, parameter :: File_Storage_Size = 8 
  integer, parameter :: Input_Unit = 5 
  integer, parameter :: IOSTAT_END = -1 
  integer, parameter :: IOSTAT_EOR = -2 
  integer, parameter :: Numeric_Storage_Size = 32 
  integer, parameter :: Output_Unit = 6 

end module iso_fortran_env

As noted in other answers, 0, 5 and 6 are usually stderr, stdin and stdout (this is true for ifort on Linux) but this is not defined by the Fortran standard. Using the iso_fortran_env module is the correct way to portably write to these units.

link|improve this answer
Unfortunately I don't have a 2003 compatible compiler; I'm in fortran 90. – Pureferret Dec 14 '11 at 18:56
@Pureferret So you can just use one of the alternative methods which I suggest. Also recent ifort versions support parts of the 2003 standard including iso_fortran_env. – Chris Dec 15 '11 at 9:05
I tried this and it didn't work, the compiler said everything in your first block was 'bad preprocessor syntax' (I think) I haven't tried your second block yet, but if @tpg2114's solution doesn't work, I'm not sure why/how your solution would work. – Pureferret Dec 15 '11 at 23:01
As I said in my answer you need to preprocess the file (the #'s are preprocessor directives) and make sure that the #'s appear in the first column. With the intel compiler this mean using the -fpp flag when compiling your source files. The second example avoids having to do this, but you should check that the the values used match those of your compiler/machine. – Chris Dec 16 '11 at 9:13
2  
You can also change the extension of your file. If it is .F or .F90 instead of .f or .f90, then the compiler will pre-process it for you without an special flags. – tpg2114 Dec 16 '11 at 11:10
show 2 more comments
feedback

The Fortran standard doesn't specify which units numbers correspond to stdin/out/err. The usual convention, followed by e.g. gfortran, is that stderr=0, stdin=5, stdout=6.

If your compiler supports the F2003 ISO_FORTRAN_ENV intrinsic module, that module contains the constants INPUT_UNIT, OUTPUT_UNIT, and ERROR_UNIT allowing the programmer to portably retrieve the unit numbers for the preconnected units.

link|improve this answer
feedback

It's actually 0 for stderr. 5 is stdin, 6 is stdout and 0 is stderr.

For example:

PROGRAM TEST
  WRITE(0,*) "Error"
  WRITE(6,*) "Good"
END PROGRAM TEST

Gives:

./a.out 
Error
Good

while

./a.out 2> /dev/null
Good

I would store a PARAMETER that is STDERR = 0 to make it portable, so if you hit a platform that is different you can just change the parameter.

This example was compiled and run with ifort 12.1.1.256, 11.1.069, 11.1.072 and 11.1.073.

link|improve this answer
I've tried this and it doesn't work. – Pureferret Dec 15 '11 at 22:54
I just tried it with 4 different versions of ifort and it works, and it also works with gfortran 4.6.0, 4.6.1 and 4.6.2. Can you post what errors it gives you? – tpg2114 Dec 15 '11 at 23:07
It doesn't give me any errors using write(0,*) but when I re-direct stderr to file, nothing happens. The version is: Intel(R) Fortran Compiler for applications running on Intel(R) 64, Version 10.0 Build 20070426 Package ID: l_fc_p_10.0.023 Copyright (C) 1985-2007 Intel Corporation. All rights reserved. – Pureferret Dec 16 '11 at 9:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.